Skip to content

Commit

Permalink
Fix verbose name of Tags model
Browse files Browse the repository at this point in the history
  • Loading branch information
cdubz committed Apr 3, 2022
1 parent 84d2415 commit 1398239
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/models.py
Expand Up @@ -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"),
Expand Down

0 comments on commit 1398239

Please sign in to comment.