diff --git a/netbox/core/views.py b/netbox/core/views.py index 17d8c9c09..415d2ddfc 100644 --- a/netbox/core/views.py +++ b/netbox/core/views.py @@ -251,7 +251,7 @@ class PluginListView(LoginRequiredMixin, View): table = tables.PluginTable(plugins) table.configure(request) - return render(request, 'extras/plugin_list.html', { + return render(request, 'core/plugin_list.html', { 'plugins': plugins, 'active_tab': 'api-tokens', 'table': table, diff --git a/netbox/templates/extras/plugin_list.html b/netbox/templates/core/plugin_list.html similarity index 91% rename from netbox/templates/extras/plugin_list.html rename to netbox/templates/core/plugin_list.html index cc9a91d5c..2cf06d15c 100644 --- a/netbox/templates/extras/plugin_list.html +++ b/netbox/templates/core/plugin_list.html @@ -18,7 +18,9 @@ {# Object table controls #} {% include 'inc/table_controls_htmx.html' with table_modal="ObjectTable_config" %} - {% render_table table %} +
+ {% render_table table %} +
{% endblock content %} {% block modals %}