/django/contrib/admin/templates/admin/filter.html
https://code.google.com/p/mango-py/ · HTML · 8 lines · 8 code · 0 blank · 0 comment · 0 complexity · cebe60258c6d3ea846db7a61ad48b3d0 MD5 · raw file
- {% load i18n %}
- <h3>{% blocktrans with title 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 }}</a></li>
- {% endfor %}
- </ul>