fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Facebook-like tags for search.
[wolnelektury.git]
/
apps
/
suggest
/
models.py
diff --git
a/apps/suggest/models.py
b/apps/suggest/models.py
index
f690bc8
..
f303872
100644
(file)
--- a/
apps/suggest/models.py
+++ b/
apps/suggest/models.py
@@
-7,9
+7,7
@@
from django.contrib.auth.models import User
from django.utils.translation import ugettext_lazy as _
class Suggestion(models.Model):
from django.utils.translation import ugettext_lazy as _
class Suggestion(models.Model):
- author = models.CharField(_('author'), blank=True, max_length=120)
- email = models.EmailField(_('e-mail'), blank=True)
- title = models.CharField(_('title'), max_length=120)
+ 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'))
description = models.TextField(_('description'), blank=True)
created_at = models.DateTimeField(_('creation date'), auto_now=True)
ip = models.IPAddressField(_('IP address'))
@@
-21,5
+19,5
@@
class Suggestion(models.Model):
verbose_name_plural = _('suggestions')
def __unicode__(self):
verbose_name_plural = _('suggestions')
def __unicode__(self):
- return
self.title
+ return
unicode(self.created_at)
\ No newline at end of file
\ No newline at end of file