我对 html 中的表格不太擅长,所以这个问题可能很容易回答。
我将列表列表传递{{ attributes }}
给模板,我想创建一个包含 2 行和多列的表。
模板:
<div id="table">
<table border=0>
{% for attr in attributes %}
<td>
<th>{{ attr.0 }}</th>
{{ attr.1 }}
</td>
{% endfor %}
</table>
</div>
我希望{{ attr.0 }}
成为标题并显示在单行上并{{ attr.1 }}
显示在第二行上。