diff --git a/django_admin_listfilter_dropdown/templates/django_admin_listfilter_dropdown/dropdown_filter.html b/django_admin_listfilter_dropdown/templates/django_admin_listfilter_dropdown/dropdown_filter.html
index fc068af..b7f5452 100644
--- a/django_admin_listfilter_dropdown/templates/django_admin_listfilter_dropdown/dropdown_filter.html
+++ b/django_admin_listfilter_dropdown/templates/django_admin_listfilter_dropdown/dropdown_filter.html
@@ -1,23 +1,27 @@
{% load i18n %}
-
{% blocktrans with title as filter_title %} By {{ filter_title }} {% endblocktrans %}
-
-{% if choices|slice:"4:" %}
- -
-
-
-{% else %}
+
+ {% blocktrans with title as filter_title %} By {{ filter_title }} {% endblocktrans %}
+
+ {% if choices|slice:"4:" %}
+ -
+
+
+ {% else %}
- {% for choice in choices %}
- -
- {{ choice.display }}
- {% endfor %}
+ {% for choice in choices %}
+ -
+ {{ choice.display }}
+
+ {% endfor %}
-{% endif %}
-
+ {% endif %}
+
+
\ No newline at end of file