X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/1d154b335f24afd19fb43dc73e085882f0902403..c95c80ba092947ae3f7cfcc5eb02976d18d00247:/questions/models.py diff --git a/questions/models.py b/questions/models.py index 1540191..ed86730 100644 --- a/questions/models.py +++ b/questions/models.py @@ -45,7 +45,7 @@ class Question(models.Model): help_text=_('Check to display answered question on site.')) published_at = models.DateTimeField(_('published at'), null=True, blank=True, db_index=True) - tags = TaggableManager(through=TagItem) + tags = TaggableManager(through=TagItem, blank=True) class Meta: ordering = ['-created_at']