blob: 8e0f256626b1af6f9d47d7bf2c66f88f9c3b4b55 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% extends "dashboard/module.html" %}
{% load i18n admin_tools_dashboard_tags %}
{% block module_content %}
<div class="group collapsible open">
<h2 class="collapsible-handler">{{ module.title }}</h2>
{% for sub_module in module.children %}
{% admin_tools_render_dashboard_module sub_module forloop.counter %}
{% endfor %}
</div>
{% endblock %}
|