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,