diff --git a/server/core/templates/wagtailadmin/pages/listing/_button_with_dropdown.html b/server/core/templates/wagtailadmin/pages/listing/_button_with_dropdown.html
deleted file mode 100644
index 8cfabee7..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_button_with_dropdown.html
+++ /dev/null
@@ -1,4 +0,0 @@
-{% load wagtailadmin_tags %}
-{% dropdown attrs=self.attrs toggle_icon=icon_name|default:"arrow-down" toggle_label=label toggle_aria_label=title toggle_classname=toggle_classname %}
- {% include "wagtailadmin/pages/listing/_dropdown_items.html" with buttons=buttons only %}
-{% enddropdown %}
diff --git a/server/core/templates/wagtailadmin/pages/listing/_dropdown_items.html b/server/core/templates/wagtailadmin/pages/listing/_dropdown_items.html
deleted file mode 100644
index 8312b5b5..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_dropdown_items.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% load wagtailadmin_tags %}
-
-{% for button in buttons %}
-
- {% if button.icon_name %}
- {% icon name=button.icon_name %}
- {% endif %}
- {{ button.label }}
-
-{% endfor %}
diff --git a/server/core/templates/wagtailadmin/pages/listing/_locked_indicator.html b/server/core/templates/wagtailadmin/pages/listing/_locked_indicator.html
deleted file mode 100644
index 7b39645b..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_locked_indicator.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{% load i18n %}
-{% load wagtailadmin_tags %}
-
-{% comment %}
- Expects a variable 'page', a page object.
- Tests whether that page is locked for editing, and if so, outputs a 'locked' icon.
-{% endcomment %}
-
-{% if page.locked %}
-
- {% icon name="lock" classname="initial" %}
-
-{% endif %}
diff --git a/server/core/templates/wagtailadmin/pages/listing/_navigation_explore.html b/server/core/templates/wagtailadmin/pages/listing/_navigation_explore.html
deleted file mode 100644
index dd6499b1..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_navigation_explore.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{% load i18n wagtailadmin_tags %}
-
-{% comment %}
-Navigation controls for the page listing in 'explore' mode
-{% endcomment %}
-
-
- {% if page.is_navigable %}
- {% icon name="arrow-right" classname="default" %}
- {% elif page_perms.can_add_subpage %}
- {% icon name="plus-inverse" classname="default" %}
- {% endif %}
-
diff --git a/server/core/templates/wagtailadmin/pages/listing/_ordering_cell.html b/server/core/templates/wagtailadmin/pages/listing/_ordering_cell.html
deleted file mode 100644
index 4b467d1c..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_ordering_cell.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% load i18n wagtailadmin_tags %}
-
-
- {% icon name="grip" classname="default" %}
-
- {% trans 'Drag' %}
- Item {{ row.index|add:1 }} of {{ table.row_count }}
-
-
-
diff --git a/server/core/templates/wagtailadmin/pages/listing/_ordering_header.html b/server/core/templates/wagtailadmin/pages/listing/_ordering_header.html
deleted file mode 100644
index 47a34249..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_ordering_header.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{% load i18n wagtailadmin_tags %}
-
- {% if is_ascending %}
-
- {% icon name="order" %}{% trans 'Sort' %}
-
- {% else %}
-
- {% icon name="order" %}{% trans 'Sort' %}
-
- {% endif %}
-
diff --git a/server/core/templates/wagtailadmin/pages/listing/_page_header_buttons.html b/server/core/templates/wagtailadmin/pages/listing/_page_header_buttons.html
deleted file mode 100644
index 101a0f32..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_page_header_buttons.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% load wagtailadmin_tags i18n %}
-
-{% trans "Actions" as title %}
-
- {% dropdown toggle_icon="dots-horizontal" toggle_aria_label=title toggle_classname="w-p-0 w-w-12 w-h-slim-header hover:w-scale-110 w-transition w-outline-offset-inside w-relative w-z-30" toggle_tooltip_offset="[0, -2]" %}
- {% block content %}
- {% include "wagtailadmin/pages/listing/_dropdown_items.html" with buttons=buttons only %}
- {% endblock %}
- {% enddropdown %}
-
diff --git a/server/core/templates/wagtailadmin/pages/listing/_page_status_cell.html b/server/core/templates/wagtailadmin/pages/listing/_page_status_cell.html
deleted file mode 100644
index 0140ace6..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_page_status_cell.html
+++ /dev/null
@@ -1,3 +0,0 @@
-
- {% include "wagtailadmin/shared/page_status_tag.html" with page=instance %}
-
diff --git a/server/core/templates/wagtailadmin/pages/listing/_page_title_cell.html b/server/core/templates/wagtailadmin/pages/listing/_page_title_cell.html
deleted file mode 100644
index 6503627e..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_page_title_cell.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{% load l10n %}
-
- {% include "wagtailadmin/pages/listing/_page_title_explore.html" with page=instance show_locale_labels=show_locale_labels actions_next_url=actions_next_url %}
- {% if parent_page %}
-
- {% endif %}
-
diff --git a/server/core/templates/wagtailadmin/pages/listing/_page_title_column_header.html b/server/core/templates/wagtailadmin/pages/listing/_page_title_column_header.html
deleted file mode 100644
index fd1c0db0..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_page_title_column_header.html
+++ /dev/null
@@ -1,30 +0,0 @@
-{% extends "wagtailadmin/tables/column_header.html" %}
-{% load wagtailadmin_tags i18n %}
-
-{% block after_label %}
- {% if page_obj %}
- {% with start_index=page_obj.start_index end_index=page_obj.end_index result_count=page_obj.paginator.count %}
- {% if is_searching %}
- {% if is_searching_whole_tree %}
- {% blocktranslate trimmed %}
- {{ start_index }}-{{ end_index }} of {{ result_count }} across entire site.
- {% endblocktranslate %}
-
- {% blocktranslate trimmed with title=parent_page.get_admin_display_title %}Search within '{{ title }}'{% endblocktranslate %}
-
- {% else %}
- {% blocktranslate trimmed with title=parent_page.get_admin_display_title %}
- {{ start_index }}-{{ end_index }} of {{ result_count }} within '{{ title }}'.
- {% endblocktranslate %}
-
- {% translate "Search the whole site" %}
-
- {% endif %}
- {% else %}
- {% blocktranslate trimmed %}
- {{ start_index }}-{{ end_index }} of {{ result_count }}
- {% endblocktranslate %}
- {% endif %}
- {% endwith %}
- {% endif %}
-{% endblock %}
diff --git a/server/core/templates/wagtailadmin/pages/listing/_page_title_explore.html b/server/core/templates/wagtailadmin/pages/listing/_page_title_explore.html
deleted file mode 100644
index ca16cd16..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_page_title_explore.html
+++ /dev/null
@@ -1,32 +0,0 @@
-{% load i18n wagtailadmin_tags %}
-
-{# The title field for a page in the page listing, when in 'explore' mode #}
-
-
-
-
- {% page_listing_buttons page request.user next_url=actions_next_url %}
-
diff --git a/server/core/templates/wagtailadmin/pages/listing/_pagination.html b/server/core/templates/wagtailadmin/pages/listing/_pagination.html
deleted file mode 100644
index 31eb260c..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_pagination.html
+++ /dev/null
@@ -1,29 +0,0 @@
-{% load i18n wagtailadmin_tags %}
-
-{% comment %}
-Pagination for page listings. Used by the `{% paginate %}` template tag.
-{% endcomment %}
-
-
diff --git a/server/core/templates/wagtailadmin/pages/listing/_parent_page_cell.html b/server/core/templates/wagtailadmin/pages/listing/_parent_page_cell.html
deleted file mode 100644
index bb0f455d..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_parent_page_cell.html
+++ /dev/null
@@ -1,5 +0,0 @@
-
- {% if value %}
- {{ value.specific_deferred.get_admin_display_title }}
- {% endif %}
-
diff --git a/server/core/templates/wagtailadmin/pages/listing/_privacy_indicator.html b/server/core/templates/wagtailadmin/pages/listing/_privacy_indicator.html
deleted file mode 100644
index d6ee39f7..00000000
--- a/server/core/templates/wagtailadmin/pages/listing/_privacy_indicator.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{% load i18n %}
-{% load wagtailadmin_tags %}
-
-{% comment %}
- Expects a variable 'page', a page object.
- Tests whether that page is protected from public view, and if so, outputs a 'protected' icon.
-{% endcomment %}
-
-{% test_page_is_public page as is_public %}
-{% if not is_public %}
-
- {% icon name="no-view" classname="initial" %}
-
-{% endif %}