From 65764effbbe70583b486937e74f47763e99fd4a5 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 16 Nov 2021 00:21:03 +0100 Subject: [PATCH] add verbose names to model --- InvenTree/plugin/models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/InvenTree/plugin/models.py b/InvenTree/plugin/models.py index 259127c747..f162cfd121 100644 --- a/InvenTree/plugin/models.py +++ b/InvenTree/plugin/models.py @@ -20,6 +20,9 @@ class PluginConfig(models.Model): name: PluginName of the plugin - serves for a manual double check if the right plugin is used active: Should the plugin be loaded? """ + class Meta: + verbose_name = _("Plugin Configuration") + verbose_name_plural = _("Plugin Configurations") key = models.CharField( unique=True,