如果父级等于 1,我想显示我的顶级类别。topcats 是一个包含类别项目的查询集。但是,下面加星标的代码不起作用。它没有找到任何cat
带有parent = 1
. 知道为什么吗?
{% for cat in topcats %}
**{% if cat.parent == 1 %}**
<a href ="/x/{{cat.id}}/dir/"><h3>{{ cat.category }}</a></h3>
{% for each in topcats %}
{% if each.parent == cat.id %}
<h5>{{ each }}</h5>
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
注意: parent 是TreeForeignKey
数据库中的一个