summaryrefslogtreecommitdiffstats
path: root/webapp/django/contrib/admin/templates/admin/filter.html
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/django/contrib/admin/templates/admin/filter.html')
-rw-r--r--webapp/django/contrib/admin/templates/admin/filter.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/webapp/django/contrib/admin/templates/admin/filter.html b/webapp/django/contrib/admin/templates/admin/filter.html
new file mode 100644
index 0000000000..bcc64ac7e4
--- /dev/null
+++ b/webapp/django/contrib/admin/templates/admin/filter.html
@@ -0,0 +1,8 @@
+{% load i18n %}
+<h3>{% blocktrans with title|escape as filter_title %} By {{ filter_title }} {% endblocktrans %}</h3>
+<ul>
+{% for choice in choices %}
+ <li{% if choice.selected %} class="selected"{% endif %}>
+ <a href="{{ choice.query_string|iriencode }}">{{ choice.display|escape }}</a></li>
+{% endfor %}
+</ul>