From 85e93b839b51b9b9c3e46c7e3ce17f6820d18306 Mon Sep 17 00:00:00 2001 From: Arthur Date: Wed, 10 Jan 2024 16:29:21 -0800 Subject: [PATCH] 14728 move plugins view from admin --- netbox/templates/extras/plugin_list.html | 30 ++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 netbox/templates/extras/plugin_list.html diff --git a/netbox/templates/extras/plugin_list.html b/netbox/templates/extras/plugin_list.html new file mode 100644 index 000000000..adb543044 --- /dev/null +++ b/netbox/templates/extras/plugin_list.html @@ -0,0 +1,30 @@ +{% extends 'base/layout.html' %} +{% load buttons %} +{% load helpers %} +{% load i18n %} +{% load render_table from django_tables2 %} + +{% block title %}{% trans "Plugins" %}{% endblock %} + +{% block controls %} +
+
+ {% block extra_controls %}{% endblock %} +
+
+{% endblock controls %} + +{% block tabs %} + +{% endblock tabs %} + +{% block content-wrapper %} +
+ {% render_table table %} + +
+{% endblock content-wrapper %}