{% extends "admin_tools/dashboard/module.html" %} {% load i18n %} {% block module_content %}
{% if module.title %} {% if subindex %}

{{ module.title }}

{% else %}

{{ module.title }}

{% endif %} {% endif %} {% spaceless %} {% if module.pre_content %}

{{ module.pre_content }}

{% endif %} {% for child in module.children %}
{% if subindex %}

{{ child.title }}

{% else %}

{{ child.title }}

{% endif %} {% for model in child.models %}
{% if model.change_url %} {{ model.title }} {% else %} {{ model.title }} {% endif %} {% if model.add_url or model.change_url %} {% endif %}
{% endfor %}
{% endfor %} {% if module.post_content %}

{{ module.post_content }}

{% endif %} {% endspaceless %}
{% endblock %}