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

33 lines
1.1 KiB
HTML

{# template-title: 掉落记录 #}
{# template-components: data-table #}
<div class="container data-page">
<h1>{{ name }} 掉落记录</h1>
<div class="data-page__meta">{{ server }} · 数量:{{ limit }} · 更新时间:{{ 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--accent data-cell--medium data-cell--nowrap">{{ item.itemName }}</td>
<td class="data-cell--center data-cell--compact data-cell--nowrap">{{ item.server }}</td>
<td class="data-cell--max-wide data-cell--wrap">{{ item.mapName }}</td>
<td class="data-cell--name data-cell--max-wide data-cell--wrap">{{ item.roleName }}</td>
<td class="data-cell--time">{{ item.time }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>