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

51 lines
1.3 KiB
HTML
Raw 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: 花价查询 #}
<div class="container">
<h1>花价查询({{ server }}</h1>
{% for map_name in [
'九寨沟·镜海',
'枫叶泊·乐苑',
'浣花水榭',
'枫叶泊·天苑',
'广陵邑'
] %}
{% if data.get(map_name) %}
<h2>{{ map_name }}</h2>
<table>
<thead>
<tr>
<th>名称</th>
<th>颜色</th>
<th>倍率</th>
<th>分线</th>
</tr>
</thead>
<tbody>
{% for item in data[map_name] %}
<tr>
<td>{{ item.name }}</td>
<td>
{% if item.color %}
{{ item.color }}
{% else %}
<span class="empty"></span>
{% endif %}
</td>
<td class="price">{{ item.price }}</td>
<td class="lines">
{{ item.line | join('、') }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
{% endfor %}
</div>