From eb2273247fbd8070ada909f0c0132bc1677591a1 Mon Sep 17 00:00:00 2001 From: Ozzieisaacs Date: Sun, 2 May 2021 15:59:40 +0200 Subject: [PATCH] Changed texts in edit shelf page for Kobo shelf sync --- cps/shelf.py | 6 ++++-- cps/templates/shelf_edit.html | 5 ++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/cps/shelf.py b/cps/shelf.py index cccfbeea..5da1eda3 100644 --- a/cps/shelf.py +++ b/cps/shelf.py @@ -240,6 +240,8 @@ def edit_shelf(shelf_id): # if shelf ID is set, we are editing a shelf def create_edit_shelf(shelf, title, page, shelf_id=False): + sync_all_books = calibre_db.session.query(ub.Shelf).filter(ub.Shelf.user_id == current_user.id)\ + .filter(ub.Shelf.kobo_sync).count() if request.method == "POST": to_save = request.form.to_dict() shelf.is_public = 1 if to_save.get("is_public") else 0 @@ -248,7 +250,6 @@ def create_edit_shelf(shelf, title, page, shelf_id=False): if check_shelf_is_unique(shelf, to_save, shelf_id): shelf.name = to_save["title"] - # shelf.last_modified = datetime.utcnow() if not shelf_id: shelf.user_id = int(current_user.id) ub.session.add(shelf) @@ -275,7 +276,8 @@ def create_edit_shelf(shelf, title, page, shelf_id=False): shelf=shelf, title=title, page=page, - kobo_sync_enabled=config.config_kobo_sync) + kobo_sync_enabled=config.config_kobo_sync, + sync_all_books=sync_all_books) def check_shelf_is_unique(shelf, to_save, shelf_id=False): diff --git a/cps/templates/shelf_edit.html b/cps/templates/shelf_edit.html index 246e45ec..6aec27ee 100644 --- a/cps/templates/shelf_edit.html +++ b/cps/templates/shelf_edit.html @@ -18,7 +18,10 @@
{% endif %}