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

33 lines
783 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>ID</th>
<th>避雷名称</th>
<th>避雷备注</th>
<th>添加时间</th>
<th>添加人</th>
</tr>
</thead>
<tbody>
{% for m in lists %}
<tr>
<td>{{ m.id }}</td>
<td>{{ m.name }}</td>
<td class="data-cell--copy">{{ m.text }}</td>
<td>{{ m.time }}</td>
<td>{{ m.user }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>