Files
2026-08-04 02:08:49 +08:00

33 lines
1.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{# template-title: 帮战记录 #}
{# template-components: data-table #}
<div class="container data-page">
<h1>帮战记录</h1>
<div class="data-page__meta">{{ server }} 更新时间:{{ update_time }}</div>
<table class="data-table">
<thead>
<tr>
<th>宣战帮会</th>
<th>应战帮会</th>
<th>开始时间</th>
<th>持续时间</th>
<th>结束时间</th>
</tr>
</thead>
<tbody>
{% for item in items %}
<tr>
<td class="data-cell--name data-cell--wide data-cell--max-wide data-cell--wrap">{{ item.declaringName }}</td>
<td class="data-cell--name data-cell--wide data-cell--max-wide data-cell--wrap">{{ item.acceptingName }}</td>
<td class="data-cell--time">{{ item.startTime }}</td>
<td class="data-cell--score data-cell--medium">{{ item.durationSeconds }}</td>
<td class="data-cell--time">{{ item.endTime }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>