Files
astrbot_plugin_jx3/templates/pages/jinjia.html
T
2026-08-04 00:17:25 +08:00

39 lines
897 B
HTML

{# template-title: 区服各平台金价 #}
<div class="container">
<h1>区服各平台金价</h1>
<table>
<thead>
<tr>
<th>服务器</th>
<th>贴吧</th>
<th>万宝楼</th>
<th>dd373</th>
<th>uu898</th>
<th>5173</th>
<th>7881</th>
<th>时间</th>
</tr>
</thead>
<tbody>
{% for m in items %}
<tr>
<td>{{ m.server }}</td>
<td>{{ m.tieba }}</td>
<td>{{ m.wanbaolou }}</td>
<td>{{ m.dd373 }}</td>
<td>{{ m.uu898 }}</td>
<td>{{ m.5173 }}</td>
<td>{{ m.7881 }}</td>
<td>{{ m.date }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>