31 lines
776 B
HTML
31 lines
776 B
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>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{% for item in items %}
|
|
<tr>
|
|
<td class="rank-col">{{ loop.index }}</td>
|
|
<td class="tong-col">{{ item.tongName }}</td>
|
|
<td class="master-col">{{ item.masterName }}</td>
|
|
<td class="score-col">{{ item.key }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|