8 lines
301 B
HTML
8 lines
301 B
HTML
{% 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>
|