summaryrefslogtreecommitdiff
path: root/demo/grappelli/templates/admin/date_hierarchy.html
blob: 25e3c6b73894f39460c72181cb2c55e4355f7323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% load i18n %}
{% if show and choices %}
    <div id="date-hierarchy" class="module date-hierarchy">
        <div class="row">
            <ul>
                {% if back %}<li><a href="{{ back.link }}" class="date-hierarchy-back">{{ back.title }}</a></li>{% endif %}
                {% for choice in choices %}
                    <li>{% if choice.link %}<a href="{{ choice.link }}">{{ choice.title }}</a>{% else %}<span>{{ choice.title }}</span>{% endif %}</li>
                {% endfor %}
            </ul><br clear="all" />
        </div>
    </div>
{% endif %}