Commit | Line | Data |
---|---|---|
790b9793 OL |
1 | {% load i18n %} |
2 | ||
3 | <h3>{% blocktrans with title as filter_title %} By {{ filter_title }} {% endblocktrans %}</h3> | |
790b9793 OL |
4 | <select dir="rtl" style="width: 95%;" onchange="window.location=window.location.pathname+this.options[this.selectedIndex].value"> |
5 | {% for choice in choices %} | |
6 | <option{% if choice.selected %} selected="selected"{% endif %} | |
7 | dir="ltr" | |
8 | value="{{ choice.query_string|iriencode }}">{{ choice.display }}</option> | |
9 | {% endfor %} | |
10 | </select> |