From 3c47063ee2924b2783bf69193ab159c86b936b07 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Sat, 2 Jan 2021 18:11:09 +1100 Subject: [PATCH] formatting --- README | 51 +++++++++++++++++++++++++++------------------------ 1 file changed, 27 insertions(+), 24 deletions(-) diff --git a/README b/README index 7a55c86..ae5062f 100644 --- a/README +++ b/README @@ -31,27 +31,30 @@ python3 main.py MAYBE-1: when moving a book in a series (which is part of 2 series), do we pop-up offer to move parent/child series orders as well to match (think Thomas Covenant) #### TODOS: -TODO-2 need to delete 1 sub_book from book - * swap the 'add sub book' for 'remove from parent book' button and then act on it (separate route, simple sql exec and route back to (no-longer) child book) - (noting that deleting a child book already removes the book_sub_book_link) -TODO-3 when remove a Parent book from a series, what do we do? - (remove all sub books from series too?) -TODO-4 with series remove - If we click a subbook, then remove series button needs to be clever (might need client-side validation / confirmation, eg. this is a subbook, you want to remove all of the sub books from the series?) -TODO-5 should deleting really just ask if want to mark it as SOLD? -TODO-6 need to add books to loan (on loan page, and via a book search?) -TODO-7 need to delete book from loan -TODO-8 show books on shelf list -TODO-9 show books to buy view / printable -TODO-11 show unrated books (with toggle to exclude those with missing in a series) -TODO-12 show books missing from a series (I own only some of them) -TODO-13 show books on wish list -TODO-14 show books that need replacing -TODO-15 show books I have sold -TODO-16 show books with poor rating -TODO-17 view list of possible duplicate books by title -TODO-18 consider which of the 'books maybe not valid' reports make sense still - (can you even have an N/A publisher now for example, but the genre one is interesting) -TODO-19 icons on wish list, etc.? (not sure I really want them, but if so) - - wishlist: search-dollar OR https://www.flaticon.com/free-icon/wishlist_868517 - - save: https://www.flaticon.com/free-icon/sold_463255?term=sold&page=1&position=6&related_item_id=463255 -TODO-20 ORM: should I lazy load all books (ajax the 2nd->last pages in, or not use ORM, and do a quick db.execute()....) +TODO-2: delete sub_book from book: + - swap the 'add sub book' for 'remove from parent book' button and then act on it (separate route, simple sql exec and route back to (no-longer) child book) +TODO-3: when remove a Parent book from a series: + - popup with: remove all sub books from series too? +TODO-4: removing a subbook from a series + - dont allow it & say remove sub book form parent book before we can act on this. OR: + - popup with: this is a subbook, you want to remove the parent & all its sub books from the series? +TODO-5: should deleting really just ask if want to mark it as SOLD? +TODO-6: need to add books to loan (on loan page, and via a book search?) +TODO-7: need to delete book from loan +TODO-8: show books on shelf list +TODO-9: show books to buy view / printable +TODO-11: show unrated books (with toggle to exclude those with missing in a series) +TODO-12: show books missing from a series (I own only some of them) +TODO-13: show books on wish list +TODO-14: show books that need replacing +TODO-15: show books I have sold +TODO-16: show books with poor rating +TODO-17: view list of possible duplicate books by title +TODO-18: consider which of the 'books maybe not valid' reports make sense still + - can you even have an N/A publisher now for example? + - but the genre one is interesting +TODO-19: icons on wish list, etc.? (not sure I really want them, but if so) + - wishlist: search-dollar OR https://www.flaticon.com/free-icon/wishlist_868517 + - save: https://www.flaticon.com/free-icon/sold_463255?term=sold&page=1&position=6&related_item_id=463255 +TODO-20: ORM all books load is slow + - should I lazy load all books (ajax the 2nd->last pages in, or not use ORM, and do a quick db.execute()....)