mirror of https://github.com/snachodog/mybuddy.git
Fix verbose name of Tags model
This commit is contained in:
parent
84d2415605
commit
1398239ecf
|
@ -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"),
|
||||
|
|
Loading…
Reference in New Issue