From 4c7d1e665816e3b8c24e0cda3778cc0e855619ba Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 17 Sep 2021 22:55:02 +0200 Subject: [PATCH] show enabled functionality in plugin overview --- InvenTree/templates/InvenTree/settings/plugin.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/InvenTree/templates/InvenTree/settings/plugin.html b/InvenTree/templates/InvenTree/settings/plugin.html index 37b47c2766..5502a3b716 100644 --- a/InvenTree/templates/InvenTree/settings/plugin.html +++ b/InvenTree/templates/InvenTree/settings/plugin.html @@ -25,7 +25,14 @@ {% plugin_list as pl_list %} {% for plugin_key, plugin in pl_list.items %} - {{plugin_key}} - {{ plugin.plugin_name}} + {{plugin_key}} - {{ plugin.plugin_name}} + {% if plugin.has_urls %} + {% trans 'Has urls' %} + {% endif %} + {% if plugin.has_settings %} + {% trans 'Has settings' %} + {% endif %} + {% endfor %}