filter.html 301 B

12345678
  1. {% load i18n %}
  2. <h3>{% blocktrans with filter_title=title %} By {{ filter_title }} {% endblocktrans %}</h3>
  3. <ul>
  4. {% for choice in choices %}
  5. <li{% if choice.selected %} class="selected"{% endif %}>
  6. <a href="{{ choice.query_string|iriencode }}">{{ choice.display }}</a></li>
  7. {% endfor %}
  8. </ul>