3 <h3>{% blocktrans with title as filter_title %} By {{ filter_title }} {% endblocktrans %}
</h3>
4 {% if choices|length
> 2 %}
5 <select dir=
"rtl" style=
"width: 95%;" onchange=
"window.location=window.location.pathname+this.options[this.selectedIndex].value">
6 {% for choice in choices %}
7 <option{% if choice.selected %}
selected=
"selected"{% endif %}
9 value=
"{{ choice.query_string|iriencode }}">{{ choice.display }}
</option>
15 {% for choice in choices %}
16 <li{% if choice.selected %}
class=
"selected"{% endif %}
>
17 <a href=
"{{ choice.query_string|iriencode }}">{{ choice.display }}
</a></li>