Skip to content

Commit d268d27

Browse files
author
Akshara Hegde
committed
Merge branch 'main' of github.com:aksharahegde/django-jet-3-calm
2 parents 09a83c9 + 841e67f commit d268d27

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

jet/templates/admin/filter.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{% load i18n %}
2+
<h3>{% blocktranslate with filter_title=title %} {{ filter_title }} {% endblocktranslate %}</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>
7+
</li>
8+
{% endfor %}
9+
</ul>

0 commit comments

Comments
 (0)