33 lines
912 B
HTML
33 lines
912 B
HTML
{# template-title: 试炼排行 #}
|
||
|
||
|
||
<div class="container">
|
||
<h1>{{ name }} 试炼排行</h1>
|
||
<div class="meta">{{ server }} | 更新时间:{{ update_time }}</div>
|
||
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>排名</th>
|
||
<th>角色名</th>
|
||
<th>装备分数</th>
|
||
<th>最高层数</th>
|
||
<th>排名积分</th>
|
||
</tr>
|
||
</thead>
|
||
|
||
<tbody>
|
||
{% for item in items %}
|
||
<tr>
|
||
<td class="rank-col">{{ loop.index }}</td>
|
||
<td class="role-col">{{ item.role_name }}</td>
|
||
<td class="number-col">{{ item.equip_score }}</td>
|
||
<td class="number-col">{{ item.max_level }}</td>
|
||
<td class="number-col score-col">{{ item.total_score }}</td>
|
||
</tr>
|
||
{% endfor %}
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
|