X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/fb2d5b78a90d3042f7eb5e8e419fcbe6e62fd00d..aa36d36d7c9b39220333253d7c3b2a65bb88dd24:/migdal/models.py diff --git a/migdal/models.py b/migdal/models.py index 97fbab3..bce76e4 100644 --- a/migdal/models.py +++ b/migdal/models.py @@ -42,7 +42,7 @@ class Entry(models.Model): help_text=_('Used only to display gravatar and send notifications.')) image = models.ImageField(_('image'), upload_to='entry/image/', null=True, blank=True) promo = models.BooleanField(_('promoted'), default=False) - categories = models.ManyToManyField(Category, null=True, blank=True) + categories = models.ManyToManyField(Category, null=True, blank=True, verbose_name=_('categories')) class Meta: verbose_name = _('entry')