add verbose names to model
This commit is contained in:
parent
aec6a58cad
commit
65764effbb
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue