fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Experimental preview of 2022 book detail page.
[wolnelektury.git]
/
src
/
dictionary
/
models.py
diff --git
a/src/dictionary/models.py
b/src/dictionary/models.py
index
5c3d2b9
..
d395b23
100644
(file)
--- a/
src/dictionary/models.py
+++ b/
src/dictionary/models.py
@@
-46,6
+46,8
@@
class NoteSource(models.Model):
@task(ignore_result=True)
def build_notes(book):
@task(ignore_result=True)
def build_notes(book):
+ if not book.findable:
+ return
task_logger.info(book.slug)
with transaction.atomic():
book.notesource_set.all().delete()
task_logger.info(book.slug)
with transaction.atomic():
book.notesource_set.all().delete()
@@
-82,5
+84,6
@@
def build_notes(book):
def notes_from_book(sender, instance, **kwargs):
def notes_from_book(sender, instance, **kwargs):
- build_notes.delay(instance)
+ if instance.findable:
+ build_notes.delay(instance)
Book.html_built.connect(notes_from_book)
Book.html_built.connect(notes_from_book)