我在 Google App Engine 上使用 Jinja2。我有一个呈现通用模板的 ListView。目前,我不确定我想要显示什么,所以我只想显示模型的每个属性。
有没有办法遍历对象以在表格单元格中输出每个对象?
例如:
{% for record in records %}
<tr>
{% for attribute in record %}
<td>{{ attribute }}</td>
{% endfor %}
</tr>
{% endfor %}
任何建议表示赞赏。谢谢