fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
missing translation
[redakcja.git]
/
apps
/
catalogue
/
models
/
book.py
diff --git
a/apps/catalogue/models/book.py
b/apps/catalogue/models/book.py
index
1b043a4
..
fb59388
100755
(executable)
--- a/
apps/catalogue/models/book.py
+++ b/
apps/catalogue/models/book.py
@@
-42,7
+42,6
@@
class Book(models.Model):
ordering = ['parent_number', 'title']
verbose_name = _('book')
verbose_name_plural = _('books')
ordering = ['parent_number', 'title']
verbose_name = _('book')
verbose_name_plural = _('books')
- permissions = [('can_pubmark', 'Can mark for publishing')]
# Representing
# Representing
@@
-99,7
+98,7
@@
class Book(models.Model):
# if there are more parts, set the rest to empty strings
book_len = len(instance)
for i in range(book_len - len(texts)):
# if there are more parts, set the rest to empty strings
book_len = len(instance)
for i in range(book_len - len(texts)):
- texts.append(
u'pusta część %d' % (i + 1), u''
)
+ texts.append(
(u'pusta część %d' % (i + 1), u'')
)
i = 0
for i, (title, text) in enumerate(texts):
i = 0
for i, (title, text) in enumerate(texts):
@@
-110,8
+109,8
@@
class Book(models.Model):
if i < book_len:
chunk = instance[i]
if i < book_len:
chunk = instance[i]
- chunk.slug = slug
- chunk.title = title
+ chunk.slug = slug
[:50]
+ chunk.title = title
[:255]
chunk.save()
else:
chunk = instance.add(slug, title, adjust_slug=True)
chunk.save()
else:
chunk = instance.add(slug, title, adjust_slug=True)