X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d712899291a689f0d4087ce5f36ef9011b03e5ef..6f8ce976c498b1df0768c0965c0c9dc2e84bda1c:/apps/suggest/models.py diff --git a/apps/suggest/models.py b/apps/suggest/models.py index f30387296..e58c9a805 100644 --- a/apps/suggest/models.py +++ b/apps/suggest/models.py @@ -12,12 +12,28 @@ class Suggestion(models.Model): created_at = models.DateTimeField(_('creation date'), auto_now=True) ip = models.IPAddressField(_('IP address')) user = models.ForeignKey(User, blank=True, null=True) - + class Meta: ordering = ('-created_at',) verbose_name = _('suggestion') verbose_name_plural = _('suggestions') - + + def __unicode__(self): + return unicode(self.created_at) + + +class PublishingSuggestion(models.Model): + contact = models.CharField(_('contact'), blank=True, max_length=120) + books = models.TextField(_('books'), null=True, blank=True) + audiobooks = models.TextField(_('audiobooks'), null=True, blank=True) + created_at = models.DateTimeField(_('creation date'), auto_now_add=True) + ip = models.IPAddressField(_('IP address')) + user = models.ForeignKey(User, blank=True, null=True) + + class Meta: + ordering = ('-created_at',) + verbose_name = _('publishing suggestion') + verbose_name_plural = _('publishing suggestions') + def __unicode__(self): return unicode(self.created_at) - \ No newline at end of file