Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

filter.html 330B

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 }}" title="{{ choice.display }}">{{ choice.display }}</a></li>
  7. {% endfor %}
  8. </ul>