Вроде бы довольно известный пакет. Кто-нибудь использовал его встроенные шаблонные теги?
http://django-categories.readthedocs.org/en/latest/reference/templatetags.html
В документации есть примеры, но никак не получается вывести все категории для одной модели.
class Article(models.Model):
category = models.ForeignKey('categories.Category')
Если использую такой код (здесь "articles" это от ListView)
{% for node,structure in articles|tree_info %}
{% if structure.new_level %}<ul><li>{% else %}</li><li>{% endif %}
{{ node.name }}
{% for level in structure.closed_levels %}</li></ul>{% endfor %}
{% endfor %}
То выходит ошибка, связанная c mptt
Exception Type: AttributeError
Exception Value: 'Article' object has no attribute '_mptt_meta'
Экспериментировал с другими тегами, но никакого результата не было