标签: django templates
有没有解决办法做这样的事情:
{% for c in categories %} {% for s in c.subcategory_set %} <li>{{ s.name }}</li> {% endfor %} {% endfor %}
???
答案 0 :(得分:3)
FK的反向关系有经理。因此,如果要访问所有相关对象,则需要使用all()方法。
all()
{% for s in c.subcategory_set.all %}