X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/b6f95eff8a5fa136edb60905284c5fd54f509fac..ae60b2a3949e96357477cc04f90fd0873cee8a92:/apps/suggest/models.py diff --git a/apps/suggest/models.py b/apps/suggest/models.py deleted file mode 100644 index 492f4cecb..000000000 --- a/apps/suggest/models.py +++ /dev/null @@ -1,39 +0,0 @@ -# -*- coding: utf-8 -*- -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. -# -from django.db import models -from django.contrib.auth.models import User -from django.utils.translation import ugettext_lazy as _ - -class Suggestion(models.Model): - contact = models.CharField(_('contact'), blank=True, max_length=120) - description = models.TextField(_('description'), blank=True) - 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')) - 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)