{% extends "base.html" %} {% load staticfiles mptt_tags %} {% block title %}Model graph{% endblock title %} {% block content %}
    {% recursetree nodes %}
  • {{ node.title }}
    {% if not node.is_leaf_node %}
      {{ children }}
    {% endif %}
  • {% endrecursetree %}
{% endblock content %}