diff --git a/netbox/templates/403.html b/netbox/templates/403.html
index 844697aae..259206f21 100644
--- a/netbox/templates/403.html
+++ b/netbox/templates/403.html
@@ -1,4 +1,4 @@
-{% extends '40x.html' %}
+{% extends 'base/40x.html' %}
{% block title %}Access Denied{% endblock %}
diff --git a/netbox/templates/404.html b/netbox/templates/404.html
index eec438071..766d81732 100644
--- a/netbox/templates/404.html
+++ b/netbox/templates/404.html
@@ -1,4 +1,4 @@
-{% extends '40x.html' %}
+{% extends 'base/40x.html' %}
{% block title %}Page Not Found{% endblock %}
diff --git a/netbox/templates/40x.html b/netbox/templates/base/40x.html
similarity index 94%
rename from netbox/templates/40x.html
rename to netbox/templates/base/40x.html
index b27a157cf..bcd8d1bc0 100644
--- a/netbox/templates/40x.html
+++ b/netbox/templates/base/40x.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% block title %}{% endblock %}
diff --git a/netbox/templates/base.html b/netbox/templates/base/base.html
similarity index 97%
rename from netbox/templates/base.html
rename to netbox/templates/base/base.html
index 085293d0e..5c9f162c1 100644
--- a/netbox/templates/base.html
+++ b/netbox/templates/base/base.html
@@ -56,7 +56,7 @@
{% block javascript %}{% endblock %}
{# User messages #}
- {% include './messages.html' %}
+ {% include 'inc/messages.html' %}
{# Data container #}
diff --git a/netbox/templates/layout.html b/netbox/templates/base/layout.html
similarity index 97%
rename from netbox/templates/layout.html
rename to netbox/templates/base/layout.html
index a52778436..e455201cc 100644
--- a/netbox/templates/layout.html
+++ b/netbox/templates/base/layout.html
@@ -1,5 +1,5 @@
{# Base layout for the core NetBox UI w/navbar and page content #}
-{% extends 'base.html' %}
+{% extends 'base/base.html' %}
{% load nav %}
{% load search_options %}
{% load static %}
@@ -26,7 +26,7 @@
{% search_options %}
- {% include './profile_button.html' %}
+ {% include 'inc/profile_button.html' %}
{% nav %}
@@ -81,7 +81,7 @@
{% search_options %}
- {% include './profile_button.html' %}
+ {% include 'inc/profile_button.html' %}
diff --git a/netbox/templates/dcim/cable_connect.html b/netbox/templates/dcim/cable_connect.html
index 6877cfedc..bce3f3186 100644
--- a/netbox/templates/dcim/cable_connect.html
+++ b/netbox/templates/dcim/cable_connect.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load static %}
{% load helpers %}
{% load form_helpers %}
diff --git a/netbox/templates/dcim/cable_trace.html b/netbox/templates/dcim/cable_trace.html
index e89d12ce9..098f790e1 100644
--- a/netbox/templates/dcim/cable_trace.html
+++ b/netbox/templates/dcim/cable_trace.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% block header %}
diff --git a/netbox/templates/dcim/connections_list.html b/netbox/templates/dcim/connections_list.html
index 3b8665947..8505d9ec4 100644
--- a/netbox/templates/dcim/connections_list.html
+++ b/netbox/templates/dcim/connections_list.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load buttons %}
{% block title %}{{ title }}{% endblock %}
@@ -10,7 +10,7 @@
- {% include 'responsive_table.html' %}
+ {% include 'inc/responsive_table.html' %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
diff --git a/netbox/templates/dcim/device_component_add.html b/netbox/templates/dcim/device_component_add.html
index e8b82f2c0..d643ee145 100644
--- a/netbox/templates/dcim/device_component_add.html
+++ b/netbox/templates/dcim/device_component_add.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load form_helpers %}
{% block title %}Create {{ component_type }}{% endblock %}
diff --git a/netbox/templates/dcim/devicebay_populate.html b/netbox/templates/dcim/devicebay_populate.html
index ffe2caf8b..a83b56474 100644
--- a/netbox/templates/dcim/devicebay_populate.html
+++ b/netbox/templates/dcim/devicebay_populate.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load form_helpers %}
{% render_errors form %}
diff --git a/netbox/templates/dcim/devicetype_component_add.html b/netbox/templates/dcim/devicetype_component_add.html
index 552dd8853..567b2b280 100644
--- a/netbox/templates/dcim/devicetype_component_add.html
+++ b/netbox/templates/dcim/devicetype_component_add.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load form_helpers %}
{% block title %}Add {{ component_type }} to {{ parent }}{% endblock %}
diff --git a/netbox/templates/dcim/inc/devicetype_component_table.html b/netbox/templates/dcim/inc/devicetype_component_table.html
index e61cb2996..dd79a668c 100644
--- a/netbox/templates/dcim/inc/devicetype_component_table.html
+++ b/netbox/templates/dcim/inc/devicetype_component_table.html
@@ -7,7 +7,7 @@
{{ title }}
- {% include 'responsive_table.html' %}
+ {% include 'inc/responsive_table.html' %}
{% endif %}
diff --git a/netbox/templates/dcim/interface.html b/netbox/templates/dcim/interface.html
index 54cfc2604..eb3f61672 100644
--- a/netbox/templates/dcim/interface.html
+++ b/netbox/templates/dcim/interface.html
@@ -291,12 +291,12 @@
- {% include 'panel_table.html' with table=vlan_table heading="VLANs" %}
+ {% include 'inc/panel_table.html' with table=vlan_table heading="VLANs" %}
- {% include 'panel_table.html' with table=child_interfaces_table heading="Child Interfaces" %}
+ {% include 'inc/panel_table.html' with table=child_interfaces_table heading="Child Interfaces" %}
diff --git a/netbox/templates/dcim/rack_elevation_list.html b/netbox/templates/dcim/rack_elevation_list.html
index 363b92779..7bd566e36 100644
--- a/netbox/templates/dcim/rack_elevation_list.html
+++ b/netbox/templates/dcim/rack_elevation_list.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% load static %}
diff --git a/netbox/templates/dcim/virtualchassis_add_member.html b/netbox/templates/dcim/virtualchassis_add_member.html
index b7818b47f..e8c0dac59 100644
--- a/netbox/templates/dcim/virtualchassis_add_member.html
+++ b/netbox/templates/dcim/virtualchassis_add_member.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load form_helpers %}
{% block title %}Add New Member to Virtual Chassis {{ virtual_chassis }}{% endblock %}
diff --git a/netbox/templates/dcim/virtualchassis_edit.html b/netbox/templates/dcim/virtualchassis_edit.html
index 195855620..d3e3f927f 100644
--- a/netbox/templates/dcim/virtualchassis_edit.html
+++ b/netbox/templates/dcim/virtualchassis_edit.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% load form_helpers %}
diff --git a/netbox/templates/exceptions/import_error.html b/netbox/templates/exceptions/import_error.html
index 776014e6f..e8ee7ae2c 100644
--- a/netbox/templates/exceptions/import_error.html
+++ b/netbox/templates/exceptions/import_error.html
@@ -16,4 +16,4 @@
has recently been upgraded, check that the WSGI service (e.g. gunicorn or uWSGI) has been restarted. This
ensures that the new code is running.
-{% endblock %}
+{% endblock message %}
diff --git a/netbox/templates/exceptions/permission_error.html b/netbox/templates/exceptions/permission_error.html
index d6fb3d18c..dcff62bf9 100644
--- a/netbox/templates/exceptions/permission_error.html
+++ b/netbox/templates/exceptions/permission_error.html
@@ -9,4 +9,4 @@
media root is
{{ settings.MEDIA_ROOT }}
. Ensure that the user NetBox runs as has access to write
files to all locations within this path.
-{% endblock %}
+{% endblock message %}
diff --git a/netbox/templates/exceptions/programming_error.html b/netbox/templates/exceptions/programming_error.html
index d55c311cc..3b9e84567 100644
--- a/netbox/templates/exceptions/programming_error.html
+++ b/netbox/templates/exceptions/programming_error.html
@@ -14,4 +14,4 @@
can check this by connecting to the database using NetBox's credentials and issuing a query for
SELECT VERSION()
.
-{% endblock %}
+{% endblock message %}
diff --git a/netbox/templates/extras/object_changelog.html b/netbox/templates/extras/object_changelog.html
index 48df5161f..af65a9deb 100644
--- a/netbox/templates/extras/object_changelog.html
+++ b/netbox/templates/extras/object_changelog.html
@@ -3,7 +3,7 @@
{% block title %}{{ object }} - Change Log{% endblock %}
{% block content %}
- {% include 'panel_table.html' %}
+ {% include 'inc/panel_table.html' %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
Change log retention: {% if settings.CHANGELOG_RETENTION %}{{ settings.CHANGELOG_RETENTION }} days{% else %}Indefinite{% endif %}
diff --git a/netbox/templates/extras/object_journal.html b/netbox/templates/extras/object_journal.html
index bcb070b22..04cbfd3dd 100644
--- a/netbox/templates/extras/object_journal.html
+++ b/netbox/templates/extras/object_journal.html
@@ -26,7 +26,7 @@
{% endif %}
- {% include 'panel_table.html' %}
+ {% include 'inc/panel_table.html' %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
{% endblock %}
diff --git a/netbox/templates/extras/objectchange.html b/netbox/templates/extras/objectchange.html
index 1df3bf5bc..caffd80b0 100644
--- a/netbox/templates/extras/objectchange.html
+++ b/netbox/templates/extras/objectchange.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% block title %}{{ object }}{% endblock %}
@@ -155,7 +155,7 @@
- {% include 'panel_table.html' with table=related_changes_table heading='Related Changes' panel_class='default' %}
+ {% include 'inc/panel_table.html' with table=related_changes_table heading='Related Changes' panel_class='default' %}
{% if related_changes_count > related_changes_table.rows|length %}
See All {{ related_changes_count|add:"1" }} Changes
diff --git a/netbox/templates/extras/report.html b/netbox/templates/extras/report.html
index 23a91b150..e914e2776 100644
--- a/netbox/templates/extras/report.html
+++ b/netbox/templates/extras/report.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% block title %}{{ report.name }}{% endblock %}
diff --git a/netbox/templates/extras/report_list.html b/netbox/templates/extras/report_list.html
index 8ce3fd931..c97e78c4e 100644
--- a/netbox/templates/extras/report_list.html
+++ b/netbox/templates/extras/report_list.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% block title %}Reports{% endblock %}
diff --git a/netbox/templates/extras/script.html b/netbox/templates/extras/script.html
index 683319fca..47a8c1f77 100644
--- a/netbox/templates/extras/script.html
+++ b/netbox/templates/extras/script.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% load form_helpers %}
{% load log_levels %}
diff --git a/netbox/templates/extras/script_list.html b/netbox/templates/extras/script_list.html
index 290d7d64f..d271723d5 100644
--- a/netbox/templates/extras/script_list.html
+++ b/netbox/templates/extras/script_list.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% block title %}Scripts{% endblock %}
diff --git a/netbox/templates/extras/script_result.html b/netbox/templates/extras/script_result.html
index 6d036251c..d8e25697d 100644
--- a/netbox/templates/extras/script_result.html
+++ b/netbox/templates/extras/script_result.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% load form_helpers %}
{% load log_levels %}
diff --git a/netbox/templates/extras/tag.html b/netbox/templates/extras/tag.html
index 7b50832fa..5caf81a9f 100644
--- a/netbox/templates/extras/tag.html
+++ b/netbox/templates/extras/tag.html
@@ -51,7 +51,7 @@
- {% include 'panel_table.html' with table=items_table heading='Tagged Objects' %}
+ {% include 'inc/panel_table.html' with table=items_table heading='Tagged Objects' %}
{% include 'inc/paginator.html' with paginator=items_table.paginator page=items_table.page %}
diff --git a/netbox/templates/generic/object.html b/netbox/templates/generic/object.html
index 73f11b1d1..db40cc264 100644
--- a/netbox/templates/generic/object.html
+++ b/netbox/templates/generic/object.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load buttons %}
{% load custom_links %}
{% load helpers %}
diff --git a/netbox/templates/generic/object_bulk_add_component.html b/netbox/templates/generic/object_bulk_add_component.html
index 31a9e405a..e9eadf92c 100644
--- a/netbox/templates/generic/object_bulk_add_component.html
+++ b/netbox/templates/generic/object_bulk_add_component.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load form_helpers %}
{% block title %}Add {{ model_name|title }}{% endblock %}
diff --git a/netbox/templates/generic/object_bulk_delete.html b/netbox/templates/generic/object_bulk_delete.html
index a7c48931e..df41b4642 100644
--- a/netbox/templates/generic/object_bulk_delete.html
+++ b/netbox/templates/generic/object_bulk_delete.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% block title %}Delete {{ table.rows|length }} {{ obj_type_plural|bettertitle }}?{% endblock %}
diff --git a/netbox/templates/generic/object_bulk_edit.html b/netbox/templates/generic/object_bulk_edit.html
index 514012a5c..78309de7a 100644
--- a/netbox/templates/generic/object_bulk_edit.html
+++ b/netbox/templates/generic/object_bulk_edit.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% load form_helpers %}
diff --git a/netbox/templates/generic/object_bulk_import.html b/netbox/templates/generic/object_bulk_import.html
index 8c53edaff..2fbd00058 100644
--- a/netbox/templates/generic/object_bulk_import.html
+++ b/netbox/templates/generic/object_bulk_import.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% load form_helpers %}
diff --git a/netbox/templates/generic/object_bulk_remove.html b/netbox/templates/generic/object_bulk_remove.html
index 1126b4cf3..cf18bf1cc 100644
--- a/netbox/templates/generic/object_bulk_remove.html
+++ b/netbox/templates/generic/object_bulk_remove.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% block title %}Remove {{ table.rows|length }} {{ obj_type_plural|bettertitle }}?{% endblock %}
diff --git a/netbox/templates/generic/object_bulk_rename.html b/netbox/templates/generic/object_bulk_rename.html
index e63f6802f..78501825b 100644
--- a/netbox/templates/generic/object_bulk_rename.html
+++ b/netbox/templates/generic/object_bulk_rename.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% load form_helpers %}
diff --git a/netbox/templates/generic/object_edit.html b/netbox/templates/generic/object_edit.html
index 9b43e51fa..01a044fc6 100644
--- a/netbox/templates/generic/object_edit.html
+++ b/netbox/templates/generic/object_edit.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %} {% load form_helpers %} {% load helpers %}
+{% extends 'base/layout.html' %} {% load form_helpers %} {% load helpers %}
{% block title %}{% if obj.pk %}Editing {{ obj_type }} {{ obj }}{% else %}Add a new {{ obj_type }}{% endif %}{% endblock %}
diff --git a/netbox/templates/generic/object_import.html b/netbox/templates/generic/object_import.html
index 248b8c529..f8024b5ae 100644
--- a/netbox/templates/generic/object_import.html
+++ b/netbox/templates/generic/object_import.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% load form_helpers %}
diff --git a/netbox/templates/generic/object_list.html b/netbox/templates/generic/object_list.html
index 678cce35f..52d47b54e 100644
--- a/netbox/templates/generic/object_list.html
+++ b/netbox/templates/generic/object_list.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load buttons %}
{% load helpers %}
{% load render_table from django_tables2 %}
@@ -78,7 +78,7 @@
- {% include 'panel_table.html' with table=parent_prefixes_table heading='Parent Prefixes' %}
+ {% include 'inc/panel_table.html' with table=parent_prefixes_table heading='Parent Prefixes' %}
{% if duplicate_ips_table.rows %}
{# Custom version of panel_table.html #}
@@ -138,7 +138,7 @@
{% endif %}
- {% include 'utilities/obj_table.html' with table=related_ips_table table_template='panel_table.html' heading='Related IP Addresses' %}
+ {% include 'utilities/obj_table.html' with table=related_ips_table table_template='inc/panel_table.html' heading='Related IP Addresses' %}
{% plugin_right_page object %}
diff --git a/netbox/templates/ipam/ipaddress_assign.html b/netbox/templates/ipam/ipaddress_assign.html
index c87d1ead1..48b04c8aa 100644
--- a/netbox/templates/ipam/ipaddress_assign.html
+++ b/netbox/templates/ipam/ipaddress_assign.html
@@ -34,7 +34,7 @@
Search Results
- {% include 'utilities/obj_table.html' with table_template='panel_table.html' %}
+ {% include 'utilities/obj_table.html' with table_template='inc/panel_table.html' %}
{% endif %}
diff --git a/netbox/templates/ipam/prefix.html b/netbox/templates/ipam/prefix.html
index 36675aa13..08270f760 100644
--- a/netbox/templates/ipam/prefix.html
+++ b/netbox/templates/ipam/prefix.html
@@ -117,9 +117,9 @@
{% if duplicate_prefix_table.rows %}
- {% include 'panel_table.html' with table=duplicate_prefix_table heading='Duplicate Prefixes' %}
+ {% include 'inc/panel_table.html' with table=duplicate_prefix_table heading='Duplicate Prefixes' %}
{% endif %}
- {% include 'panel_table.html' with table=parent_prefix_table heading='Parent Prefixes' %}
+ {% include 'inc/panel_table.html' with table=parent_prefix_table heading='Parent Prefixes' %}
{% plugin_right_page object %}
diff --git a/netbox/templates/ipam/prefix/ip_addresses.html b/netbox/templates/ipam/prefix/ip_addresses.html
index 4d422b682..09c800b01 100644
--- a/netbox/templates/ipam/prefix/ip_addresses.html
+++ b/netbox/templates/ipam/prefix/ip_addresses.html
@@ -12,7 +12,7 @@
{% block content %}
- {% include 'utilities/obj_table.html' with table=ip_table table_template='panel_table.html' heading='IP Addresses' bulk_edit_url='ipam:ipaddress_bulk_edit' bulk_delete_url='ipam:ipaddress_bulk_delete' %}
+ {% include 'utilities/obj_table.html' with table=ip_table table_template='inc/panel_table.html' heading='IP Addresses' bulk_edit_url='ipam:ipaddress_bulk_edit' bulk_delete_url='ipam:ipaddress_bulk_delete' %}
{% endblock %}
diff --git a/netbox/templates/ipam/prefix/prefixes.html b/netbox/templates/ipam/prefix/prefixes.html
index a83b3ac12..b33288768 100644
--- a/netbox/templates/ipam/prefix/prefixes.html
+++ b/netbox/templates/ipam/prefix/prefixes.html
@@ -19,7 +19,7 @@
{% block content %}
- {% include 'utilities/obj_table.html' with table=prefix_table table_template='panel_table.html' heading='Child Prefixes' bulk_edit_url='ipam:prefix_bulk_edit' bulk_delete_url='ipam:prefix_bulk_delete' parent=prefix %}
+ {% include 'utilities/obj_table.html' with table=prefix_table table_template='inc/panel_table.html' heading='Child Prefixes' bulk_edit_url='ipam:prefix_bulk_edit' bulk_delete_url='ipam:prefix_bulk_delete' parent=prefix %}
{% endblock %}
diff --git a/netbox/templates/ipam/routetarget.html b/netbox/templates/ipam/routetarget.html
index c2c7fd7ed..c29bdc0bd 100644
--- a/netbox/templates/ipam/routetarget.html
+++ b/netbox/templates/ipam/routetarget.html
@@ -42,9 +42,9 @@
- {% include 'panel_table.html' with table=importing_vrfs_table heading="Importing VRFs" %}
+ {% include 'inc/panel_table.html' with table=importing_vrfs_table heading="Importing VRFs" %}
- {% include 'panel_table.html' with table=exporting_vrfs_table heading="Exporting VRFs" %}
+ {% include 'inc/panel_table.html' with table=exporting_vrfs_table heading="Exporting VRFs" %}
{% plugin_right_page object %}
diff --git a/netbox/templates/ipam/vlan.html b/netbox/templates/ipam/vlan.html
index 094310d9b..397a0a2a8 100644
--- a/netbox/templates/ipam/vlan.html
+++ b/netbox/templates/ipam/vlan.html
@@ -87,7 +87,7 @@
Prefixes
- {% include 'responsive_table.html' with table=prefix_table %}
+ {% include 'inc/responsive_table.html' with table=prefix_table %}
{% if perms.ipam.add_prefix %}
- {% include 'panel_table.html' with table=import_targets_table heading="Import Route Targets" %}
- {% include 'panel_table.html' with table=export_targets_table heading="Export Route Targets" %}
+ {% include 'inc/panel_table.html' with table=import_targets_table heading="Import Route Targets" %}
+ {% include 'inc/panel_table.html' with table=export_targets_table heading="Export Route Targets" %}
{% plugin_right_page object %}
diff --git a/netbox/templates/login.html b/netbox/templates/login.html
index 006091bf8..5f56e7b9a 100644
--- a/netbox/templates/login.html
+++ b/netbox/templates/login.html
@@ -1,5 +1,5 @@
{# User login page. Extends base.html directly to override normal UI layout. #}
-{% extends 'base.html' %}
+{% extends 'base/base.html' %}
{% load form_helpers %}
{% load static %}
diff --git a/netbox/templates/search.html b/netbox/templates/search.html
index 3383bb2cd..24cd0b3bd 100644
--- a/netbox/templates/search.html
+++ b/netbox/templates/search.html
@@ -1,4 +1,4 @@
-{% extends 'layout.html' %}
+{% extends 'base/layout.html' %}
{% load helpers %}
{% load form_helpers %}
@@ -11,7 +11,7 @@
{% endif %}
- {% include table_template|default:'responsive_table.html' %}
+ {% include table_template|default:'inc/responsive_table.html' %}
{% block extra_actions %}{% endblock %}
{% if bulk_edit_url and permissions.change %}
@@ -43,7 +43,7 @@
{% else %}
- {% include table_template|default:'responsive_table.html' %}
+ {% include table_template|default:'inc/responsive_table.html' %}
{% endif %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
diff --git a/netbox/templates/virtualization/cluster/devices.html b/netbox/templates/virtualization/cluster/devices.html
index 99f8d43df..658162243 100644
--- a/netbox/templates/virtualization/cluster/devices.html
+++ b/netbox/templates/virtualization/cluster/devices.html
@@ -11,7 +11,7 @@