diff --git a/InvenTree/plugin/templatetags/plugin_extras.py b/InvenTree/plugin/templatetags/plugin_extras.py index 05ba26d09d..e18ef70b3c 100644 --- a/InvenTree/plugin/templatetags/plugin_extras.py +++ b/InvenTree/plugin/templatetags/plugin_extras.py @@ -51,3 +51,8 @@ def safe_url(view_name, *args, **kwargs): return reverse(view_name, args=args, kwargs=kwargs) except: return None + +@register.simple_tag() +def plugin_errors(*args, **kwargs): + """Return all plugin errors""" + return djangosettings.INTEGRATION_ERRORS diff --git a/InvenTree/templates/InvenTree/settings/plugin.html b/InvenTree/templates/InvenTree/settings/plugin.html index 920d0b7804..e5bf97a512 100644 --- a/InvenTree/templates/InvenTree/settings/plugin.html +++ b/InvenTree/templates/InvenTree/settings/plugin.html @@ -102,4 +102,32 @@ + +
{% trans "Stage" %} | +{% trans "Name" %} | +{% trans "Message" %} | +
---|---|---|
{{ stage }} | +{{ name }} | +{{ message }} | +