X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/9c5d9a4e77a10b4e60d89d3890e49002bd7f3993..b6f95eff8a5fa136edb60905284c5fd54f509fac:/apps/suggest/models.py diff --git a/apps/suggest/models.py b/apps/suggest/models.py index e24afaeb8..492f4cecb 100644 --- a/apps/suggest/models.py +++ b/apps/suggest/models.py @@ -20,3 +20,20 @@ class Suggestion(models.Model): 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')) + audiobooks = models.TextField(_('audiobooks')) + 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)