fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d13884c
)
Added default value to SS field.
author
Marek Stępniowski
<marek@stepniowski.com>
Thu, 25 Sep 2008 15:27:05 +0000
(17:27 +0200)
committer
Marek Stępniowski
<marek@stepniowski.com>
Thu, 25 Sep 2008 15:27:05 +0000
(17:27 +0200)
apps/catalogue/models.py
patch
|
blob
|
history
diff --git
a/apps/catalogue/models.py
b/apps/catalogue/models.py
index
ec3c32e
..
8a77227
100644
(file)
--- a/
apps/catalogue/models.py
+++ b/
apps/catalogue/models.py
@@
-43,7
+43,7
@@
class Tag(TagBase):
main_page = models.BooleanField(_('main page'), default=False, db_index=True, help_text=_('Show tag on main page'))
user = models.ForeignKey(User, blank=True, null=True)
- book_count = models.IntegerField(_('book count'))
+ book_count = models.IntegerField(_('book count')
, default=0, blank=False, null=False
)
def has_description(self):
return len(self.description) > 0