50 lines
1.6 KiB
HTML
50 lines
1.6 KiB
HTML
{# template-title: 小药表 #}
|
|
{# template-components: data-table data-extras #}
|
|
|
|
|
|
<div class="container data-page">
|
|
<h1>心法小药表</h1>
|
|
|
|
<table class="data-table">
|
|
<thead>
|
|
<tr>
|
|
<th rowspan="2">心法</th>
|
|
<th colspan="4">紫色小药</th>
|
|
<th colspan="4">蓝色小药</th>
|
|
</tr>
|
|
<tr>
|
|
<th>增强食品</th>
|
|
<th>增强药品</th>
|
|
<th>辅助食品</th>
|
|
<th>辅助药品</th>
|
|
|
|
<th>增强食品</th>
|
|
<th>增强药品</th>
|
|
<th>辅助食品</th>
|
|
<th>辅助药品</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{% for m in items %}
|
|
<tr>
|
|
<td class="data-cell--strong">{{ m.kungfu }}</td>
|
|
|
|
<!-- 紫色 -->
|
|
<td class="text-purple">{{ m.purple["增强食品"] }}</td>
|
|
<td class="text-purple">{{ m.purple["增强药品"] }}</td>
|
|
<td class="text-purple">{{ m.purple["辅助食品"] }}</td>
|
|
<td class="text-purple">{{ m.purple["辅助药品"] }}</td>
|
|
|
|
<!-- 蓝色 -->
|
|
<td class="text-blue">{{ m.blue["增强食品"] }}</td>
|
|
<td class="text-blue">{{ m.blue["增强药品"] }}</td>
|
|
<td class="text-blue">{{ m.blue["辅助食品"] }}</td>
|
|
<td class="text-blue">{{ m.blue["辅助药品"] }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|