From e8f2711eacdb54ae63e82656f9da58044d4eddd3 Mon Sep 17 00:00:00 2001 From: Arthur Date: Thu, 18 Jan 2024 13:26:21 -0800 Subject: [PATCH] 14728 configure table --- netbox/core/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/core/views.py b/netbox/core/views.py index 0617b8c34..b34ea654a 100644 --- a/netbox/core/views.py +++ b/netbox/core/views.py @@ -246,7 +246,7 @@ class PluginListView(LoginRequiredMixin, View): def get(self, request): plugins = [apps.get_app_config(plugin) for plugin in settings.PLUGINS] table = tables.PluginTable(plugins) - # table.configure(request) + table.configure(request) return render(request, 'extras/plugin_list.html', { 'plugins': plugins,