X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d079fead0c792171b24684bc31a991e2cc13f15e..d69fc5f16ed739c02685e7d695abf6de59c2bf5e:/apps/dictionary/models.py diff --git a/apps/dictionary/models.py b/apps/dictionary/models.py index 375bb22ca..2256acf71 100644 --- a/apps/dictionary/models.py +++ b/apps/dictionary/models.py @@ -27,9 +27,9 @@ def build_notes(book): from librarian import html for anchor, text_str, html_str in html.extract_annotations(book.html_file.path): Note.objects.create(book=book, anchor=anchor, - html=html_str, + html=html_str, sort_key=sortify(text_str).strip()[:128]) - -def notes_from_book(sender, **kwargs): - build_notes.delay(sender) + +def notes_from_book(sender, instance, **kwargs): + build_notes.delay(instance) Book.html_built.connect(notes_from_book)