diff --git a/InvenTree/plugin/templatetags/plugin_extras.py b/InvenTree/plugin/templatetags/plugin_extras.py index 51a115b67e..56d50fab01 100644 --- a/InvenTree/plugin/templatetags/plugin_extras.py +++ b/InvenTree/plugin/templatetags/plugin_extras.py @@ -18,6 +18,12 @@ def plugin_list(*args, **kwargs): return djangosettings.INTEGRATION_PLUGINS +@register.simple_tag() +def inactive_plugin_list(*args, **kwargs): + """ Return a list of all inactive integration plugins """ + return djangosettings.INTEGRATION_PLUGINS_INACTIVE + + @register.simple_tag() def plugin_settings(plugin, *args, **kwargs): """ Return a list of all settings for a plugin """ diff --git a/InvenTree/templates/InvenTree/settings/plugin.html b/InvenTree/templates/InvenTree/settings/plugin.html index 76d868a093..f5c5054976 100644 --- a/InvenTree/templates/InvenTree/settings/plugin.html +++ b/InvenTree/templates/InvenTree/settings/plugin.html @@ -64,6 +64,18 @@