django模板有问题

时间:2011-06-13 23:19:20

标签: django templates

有没有解决办法做这样的事情:

{% for c in categories %}
   {% for s in c.subcategory_set %}
   <li>{{ s.name }}</li>
   {% endfor %}
{% endfor %}

???

1 个答案:

答案 0 :(得分:3)

FK的反向关系有经理。因此,如果要访问所有相关对象,则需要使用all()方法。

{% for s in c.subcategory_set.all %}