Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / django / contrib / admin / templates / admin / filter.html @ 1a305335

History | View | Annotate | Download (301 Bytes)

1 1a305335 officers
{% load i18n %}
2
<h3>{% blocktrans with filter_title=title %} By {{ filter_title }} {% endblocktrans %}</h3>
3
<ul>
4
{% for choice in choices %}
5
    <li{% if choice.selected %} class="selected"{% endif %}>
6
    <a href="{{ choice.query_string|iriencode }}">{{ choice.display }}</a></li>
7
{% endfor %}
8
</ul>