+
+ 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.GenericIPAddressField(_('IP address'))
+ user = models.ForeignKey(User, blank=True, null=True)
+
+ class Meta:
+ ordering = ('-created_at',)
+ verbose_name = _('publishing suggestion')
+ verbose_name_plural = _('publishing suggestions')
+