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
+46
View File
@@ -0,0 +1,46 @@
{# template-title: 的卢记录 #}
<div class="container">
<h1>的卢记录</h1>
<table>
<thead>
<tr>
<th>服务器</th>
<th>开始时间</th>
<th>捕获时间</th>
<th>捕获人</th>
<th>所属阵营</th>
<th>拍卖时间</th>
<th>拍卖价格</th>
<th>拍得者</th>
<th>所属阵营</th>
</tr>
</thead>
<tbody>
{% for m in list %}
<tr
{% if m.captureCampName == '浩气盟' %}
class="camp-haoqi"
{% elif m.captureCampName == '恶人谷' %}
class="camp-eren"
{% endif %}
>
<td>{{ m.server }}</td>
<td>{{ m.refreshTime }}</td>
<td>{{ m.captureTime }}</td>
<td>{{ m.captureRoleName }}</td>
<td>{{ m.captureCampName }}</td>
<td>{{ m.auctionTime }}</td>
<td>{{ m.auctionAmount }}</td>
<td>{{ m.auctionRoleName }}</td>
<td>{{ m.auctionCampName }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>