50 lines
1.4 KiB
HTML
50 lines
1.4 KiB
HTML
{# template-title: 小药表 #}
|
|
|
|
|
|
<div class="container">
|
|
<h1>心法小药表</h1>
|
|
|
|
<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="kungfu">{{ m.kungfu }}</td>
|
|
|
|
<!-- 紫色 -->
|
|
<td class="purple">{{ m.purple["增强食品"] }}</td>
|
|
<td class="purple">{{ m.purple["增强药品"] }}</td>
|
|
<td class="purple">{{ m.purple["辅助食品"] }}</td>
|
|
<td class="purple">{{ m.purple["辅助药品"] }}</td>
|
|
|
|
<!-- 蓝色 -->
|
|
<td class="blue">{{ m.blue["增强食品"] }}</td>
|
|
<td class="blue">{{ m.blue["增强药品"] }}</td>
|
|
<td class="blue">{{ m.blue["辅助食品"] }}</td>
|
|
<td class="blue">{{ m.blue["辅助药品"] }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
|