diff --git a/netbox/templates/tenancy/tenant_list.html b/netbox/templates/tenancy/tenant_list.html
deleted file mode 100644
index a77636a5b..000000000
--- a/netbox/templates/tenancy/tenant_list.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{% extends '_base.html' %}
-{% load buttons %}
-
-{% block content %}
-
- {% if perms.tenancy.add_tenant %}
- {% add_button 'tenancy:tenant_add' %}
- {% import_button 'tenancy:tenant_import' %}
- {% endif %}
- {% export_button content_type %}
-
-{% block title %}Tenants{% endblock %}
-
-
- {% include 'utilities/obj_table.html' with bulk_edit_url='tenancy:tenant_bulk_edit' bulk_delete_url='tenancy:tenant_bulk_delete' %}
-
-
- {% include 'inc/search_panel.html' %}
-
-
-{% endblock %}
diff --git a/netbox/templates/tenancy/tenantgroup_list.html b/netbox/templates/tenancy/tenantgroup_list.html
deleted file mode 100644
index af0dc1aad..000000000
--- a/netbox/templates/tenancy/tenantgroup_list.html
+++ /dev/null
@@ -1,18 +0,0 @@
-{% extends '_base.html' %}
-{% load buttons %}
-
-{% block content %}
-
- {% if perms.tenancy.add_tenantgroup %}
- {% add_button 'tenancy:tenantgroup_add' %}
- {% import_button 'tenancy:tenantgroup_import' %}
- {% endif %}
- {% export_button content_type %}
-
-{% block title %}Tenant Groups{% endblock %}
-
-
- {% include 'utilities/obj_table.html' with bulk_delete_url='tenancy:tenantgroup_bulk_delete' %}
-
-
-{% endblock %}
diff --git a/netbox/tenancy/views.py b/netbox/tenancy/views.py
index a53458694..0319a20b0 100644
--- a/netbox/tenancy/views.py
+++ b/netbox/tenancy/views.py
@@ -22,7 +22,6 @@ class TenantGroupListView(PermissionRequiredMixin, ObjectListView):
permission_required = 'tenancy.view_tenantgroup'
queryset = TenantGroup.objects.annotate(tenant_count=Count('tenants'))
table = tables.TenantGroupTable
- template_name = 'tenancy/tenantgroup_list.html'
class TenantGroupCreateView(PermissionRequiredMixin, ObjectEditView):
@@ -60,7 +59,6 @@ class TenantListView(PermissionRequiredMixin, ObjectListView):
filterset = filters.TenantFilterSet
filterset_form = forms.TenantFilterForm
table = tables.TenantTable
- template_name = 'tenancy/tenant_list.html'
class TenantView(PermissionRequiredMixin, View):