This commit is contained in:
qsc
2026-08-04 00:17:25 +08:00
parent 4b6c86a32b
commit a4a01dc16d
138 changed files with 6328 additions and 8130 deletions
+50
View File
@@ -0,0 +1,50 @@
{# 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>