Fix verbose name of Tags model

This commit is contained in:
Christopher C. Wells 2022-04-03 16:42:23 -07:00
parent 84d2415605
commit 1398239ecf
1 changed files with 2 additions and 1 deletions

View File

@ -106,7 +106,8 @@ def random_color():
class Tag(TagBase):
class Meta:
verbose_name = _("Tags")
verbose_name = _("Tag")
verbose_name_plural = _("Tags")
color = models.CharField(
verbose_name=_("Color"),