summaryrefslogtreecommitdiffstats
path: root/webapp/django/contrib/admin/templates/admin/filter.html
blob: bcc64ac7e496dc4860fb8828ceb5ca1d5682c615 (plain)
1
2
3
4
5
6
7
8
{% load i18n %}
<h3>{% blocktrans with title|escape as filter_title %} By {{ filter_title }} {% endblocktrans %}</h3>
<ul>
{% for choice in choices %}
    <li{% if choice.selected %} class="selected"{% endif %}>
    <a href="{{ choice.query_string|iriencode }}">{{ choice.display|escape }}</a></li>
{% endfor %}
</ul>