diff --git a/InvenTree/plugin/models.py b/InvenTree/plugin/models.py index f80a4ced85..0624693abc 100644 --- a/InvenTree/plugin/models.py +++ b/InvenTree/plugin/models.py @@ -183,3 +183,6 @@ class NotificationUserSetting(common.models.GenericReferencedSettingClass, commo verbose_name=_('User'), help_text=_('User'), ) + + def __str__(self) -> str: + return f'{self.key} (for {self.user}): {self.value}'