summaryrefslogtreecommitdiff
path: root/tests/admin_views/templates/custom_filter_template.html
blob: e5c9a8e7d8b5ce4db68e772b9548effad5daba69 (plain)
1
2
3
4
5
6
7
<h3>By {{ filter_title }} (custom)</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>