ernestophone.ens.fr/templates/admin/filter.html

9 lines
301 B
HTML
Raw Normal View History

2015-03-29 19:21:19 +02:00
{% load i18n %}
<h3>{% blocktrans with filter_title=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>