X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/548d9fe735b1c4f04c296f01a3bf73149f627005..92fd89419f48638b2181671cdc6c1f42adcbc395:/questions/models.py?ds=sidebyside diff --git a/questions/models.py b/questions/models.py index 47dc697..bc7d960 100644 --- a/questions/models.py +++ b/questions/models.py @@ -11,6 +11,7 @@ class Question(models.Model): email = models.EmailField(_('contact e-mail'), null=True, blank=True) question = models.TextField(_('question'), db_index=True) created_at = models.DateTimeField(_('created at'), auto_now_add=True) + changed_at = models.DateTimeField(_('changed at'), auto_now=True) approved = models.BooleanField(_('approved'), default=False) edited_question = models.TextField(_('edited question'), db_index=True, null=True, blank=True, help_text=_("Leave empty if question doesn't need editing.")) @@ -25,6 +26,8 @@ class Question(models.Model): class Meta: ordering = ['-created_at'] + verbose_name = _('question') + verbose_name_plural = _('questions') def __unicode__(self): return self.edited_question or self.question