【发布时间】:2011-09-11 20:37:32
【问题描述】:
基本上,我想做的是让模板系统循环通过两个独立的列表来填充表格的两列。我的方法是使用索引列表 (numList) 作为访问两个列表的相同索引的一种方式。我尝试在模板循环中使用点符号进行列表索引查找,但它似乎在循环中不起作用。关于如何解决这个问题的任何想法?
numList = [0, 1, 2, 3]
placeList = ['park', 'store', 'home', 'school']
speakerList = ['bill', 'john', 'jake', 'tony']
<table>
<tr>
<th>Location</th>
<th>Time</th>
<th>Speaker</th>
</tr>
{% for num in numList %}
<tr>
<td>{{ placeList.num }}</td>
<td>1:30</td>
<td>{{ speakerList.num }}</td>
</tr>
{% endfor %}
</table>
【问题讨论】:
标签: python django list django-templates