Files
astrbot_plugin_jx3/templates/pages/kuafumingjian.html
T
2026-09-05 22:41:53 +08:00

35 lines
1.2 KiB
HTML

{# template-title: 跨服名剑榜 #}
{# template-components: data-table #}
<div class="container data-page">
<h1>{{ name }}</h1>
<div class="data-page__meta">{{ server }} · {{ mode_name }}{% if update_time %} · 更新时间:{{ update_time }}{% endif %}</div>
<table class="data-table">
<thead>
<tr>
<th>排名</th>
<th>队伍名称</th>
<th>积分</th>
<th>胜场</th>
<th>败场</th>
<th>总场数</th>
</tr>
</thead>
<tbody>
{% for item in items %}
<tr>
<td class="data-cell--rank">{{ loop.index }}</td>
<td class="data-cell--name data-cell--wrap">{{ item.corpsName }}</td>
<td class="data-cell--score">{{ item.corpsLevel }}</td>
<td class="data-cell--nowrap data-cell--numeric">{{ item.seasonWinCount }}</td>
<td class="data-cell--nowrap data-cell--numeric">{{ item.seasonLoseCount }}</td>
<td class="data-cell--nowrap data-cell--numeric">{{ item.seasonTotalCount }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>