44 lines
1.3 KiB
HTML
44 lines
1.3 KiB
HTML
{# template-title: 角色榜单 #}
|
|
|
|
|
|
<div class="container">
|
|
<h1>{{ rank_name }}</h1>
|
|
<div class="meta">{{ server }} · 更新时间:{{ update_time }}</div>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>排名</th>
|
|
<th>职业</th>
|
|
<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>
|
|
<div class="force">
|
|
{% if icons.sect.get(item.forceName) %}
|
|
<img class="force-icon" src="{{ icons.sect[item.forceName] }}" alt="{{ item.forceName }}">
|
|
{% endif %}
|
|
<span>{{ item.forceName }}</span>
|
|
</div>
|
|
</td>
|
|
<td class="role-col">{{ item.name }}</td>
|
|
<td class="level-col">{{ item.level }}</td>
|
|
<td class="camp-col">{{ item.campName }}</td>
|
|
<td class="tong-col">{{ item.tongName }}</td>
|
|
<td class="score-col">{{ item.totalScore }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|