debian-django-admin-tools/admin_tools/dashboard/templates/admin_tools/dashboard/modules/link_list.html

13 lines
329 B
HTML
Raw Normal View History

{% extends "admin_tools/dashboard/module.html" %}
2010-02-04 14:15:56 +01:00
{% block module_content %}
<ul class="{{ module.layout }}">
{% spaceless %}
2010-02-09 19:09:28 +01:00
{% for child in module.children %}
2010-02-04 14:15:56 +01:00
<li class="{% cycle 'odd' 'even' %}">
2013-01-04 11:56:09 +01:00
<a{{ child.attrs }}>{{ child.title }}</a>
2010-02-04 14:15:56 +01:00
</li>
{% endfor %}
{% endspaceless %}
</ul>
{% endblock %}