X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/ef3a7be179d7fb38030ef5a2760b17e42d25320b..3a2b863daf220221f8360db6e24072c6e102a50d:/questions/models.py diff --git a/questions/models.py b/questions/models.py index b441a00..2955ddb 100644 --- a/questions/models.py +++ b/questions/models.py @@ -7,6 +7,8 @@ from django.db import models from django.template import loader, Context from django.utils.translation import ugettext_lazy as _ from markupfield.fields import MarkupField +from taggit_autosuggest.managers import TaggableManager + class Question(models.Model): email = models.EmailField(_('contact e-mail'), null=True, blank=True) @@ -25,6 +27,8 @@ 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() + class Meta: ordering = ['-created_at'] verbose_name = _('question')