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

35 lines
861 B
HTML

{# template-title: 烟花记录 #}
{# template-components: data-table #}
<div class="container data-page">
<h1>烟花记录</h1>
<table class="data-table data-table--spaced">
<thead>
<tr>
<th>服务器</th>
<th>烟花名称</th>
<th>使用地点</th>
<th>释放角色</th>
<th>接收角色</th>
<th>释放时间</th>
</tr>
</thead>
<tbody>
{% for m in list %}
<tr>
<td>{{ m.server }}</td>
<td>{{ m.firework }}</td>
<td>{{ m.mapName }}</td>
<td>{{ m.sender }}</td>
<td>{{ m.receiver }}</td>
<td>{{ m.time }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>