Files
astrbot_plugin_jx3/templates/pages/mingjiantongji.html
T
2026-08-04 02:08:49 +08:00

37 lines
1.1 KiB
HTML

{# template-title: 名剑统计 #}
{# template-components: data-table #}
<div class="container data-page">
<h1>名剑统计(前1000) · {{ mode }}</h1>
<div class="data-page__meta">更新时间:{{ update_time }}</div>
<table class="data-table data-table--nowrap">
<thead>
<tr>
<th>门派</th>
<th>本周数量</th>
<th>上周数量</th>
</tr>
</thead>
<tbody>
{% for m in items %}
<tr>
<td>
<div class="icon-label">
{% if icons.sect.get(m.forceName) %}
<img class="icon-label__icon" src="{{ icons.sect[m.forceName] }}" alt="{{ m.forceName }}">
{% endif %}
<span>{{ m.forceName }}</span>
</div>
</td>
<td class="data-cell--score">{{ m.thisWeek }}</td>
<td class="data-cell--score">{{ m.lastWeek }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>