使用django-mppt
我想浏览我的类别层次结构,显示与它的任何子项中的当前类别相关的对象数量。
drill_down_for_node
与所示示例非常相似,但仅限于当前节点的子节点...
最佳的将是
{% recursetree obj.get_children cumulative count model.Foreignkey.category in o_count%}
<li>
<h2><a href="{{ node.get_absolute_url }}">{{ node }}</a></h2>
{% if not node.is_leaf_node %}
<ul class="children">
<a href="{{ children.get_absolute_url }}">{{ children }} ({{o_count}})</a>
</ul>
{% endif %}
</li>
{% endrecursetree %}
任何指针?