fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Use meta types in editor.
[redakcja.git]
/
src
/
documents
/
models
/
book.py
diff --git
a/src/documents/models/book.py
b/src/documents/models/book.py
index
41e0bcd
..
1580f74
100644
(file)
--- a/
src/documents/models/book.py
+++ b/
src/documents/models/book.py
@@
-278,6
+278,9
@@
class Book(models.Model):
except IndexError:
return None
+ def last_legimi_publish(self):
+ return self.legimibookpublish_set.order_by('-created_at').first()
+
def assert_publishable(self):
assert self.chunk_set.exists(), _('No chunks in the book.')
try: