を使用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 %}
ポインタはありますか?