blob: 8df826845485f4342bd1f16eeecf507715ded84d (
plain)
1
2
3
4
5
6
7
8
9
|
{% extends "dashboard/module.html" %}
{% load i18n admin_tools_dashboard_tags %}
{% block module_content %}
<div class="column {{ module.className }}">
{% for child in module.children %}
{% admin_tools_render_dashboard_module child forloop.counter %}
{% endfor %}
</div>
{% endblock %}
|