diff --git a/src/registrar/templates/admin/change_list.html b/src/registrar/templates/admin/change_list.html
index c5ee34f3e..574d434e8 100644
--- a/src/registrar/templates/admin/change_list.html
+++ b/src/registrar/templates/admin/change_list.html
@@ -1,4 +1,5 @@
{% extends "admin/change_list.html" %}
+{% load i18n admin_urls static admin_list %}
{% block content_title %}
{{ title }}
@@ -47,4 +48,25 @@
{{ block.super }}
{% endblock %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}
+
+
+{% comment %} Replace the Django header markup for clearing all filters with a div. {% endcomment %}
+{% block filters %}
+{% if cl.has_filters %}
+
+{% endif %}
+{% endblock %}
+
diff --git a/src/registrar/templates/django/admin/multiple_choice_list_filter.html b/src/registrar/templates/django/admin/multiple_choice_list_filter.html
index 167059594..c64fa1be1 100644
--- a/src/registrar/templates/django/admin/multiple_choice_list_filter.html
+++ b/src/registrar/templates/django/admin/multiple_choice_list_filter.html
@@ -1,37 +1,41 @@
{% load i18n %}
{% load static field_helpers url_helpers %}
+
+
+ {% blocktrans with filter_title=title %} By {{ filter_title }} {% endblocktrans %}
+
+
+ {% for choice in choices %}
+ {% if choice.reset %}
+ -
+ {{ choice.display }}
+
+ {% endif %}
+ {% endfor %}
-{% blocktrans with filter_title=title %} By {{ filter_title }} {% endblocktrans %}
-
-{% for choice in choices %}
- {% if choice.reset %}
- -
- {{ choice.display }}
-
- {% endif %}
-{% endfor %}
-{% for choice in choices %}
- {% if not choice.reset %}
- -
- {% if choice.selected and choice.exclude_query_string %}
- {{ choice.display }}
-
-
-
- {% endif %}
- {% if not choice.selected and choice.include_query_string %}
- {{ choice.display }}
-
-
- {% endif %}
-
- {% endif %}
-{% endfor %}
-
+ {% for choice in choices %}
+ {% if not choice.reset %}
+ -
+ {% if choice.selected and choice.exclude_query_string %}
+ {{ choice.display }}
+
+
+
+ {% endif %}
+ {% if not choice.selected and choice.include_query_string %}
+ {{ choice.display }}
+
+
+ {% endif %}
+
+ {% endif %}
+ {% endfor %}
+
+