can now create/update/delete authors (base.html, using edit*.html, and authors.html)

This commit is contained in:
2020-12-05 19:27:13 +11:00
parent f3c70d267c
commit 39e3838336
3 changed files with 42 additions and 59 deletions

14
README
View File

@@ -24,10 +24,12 @@ pip3 install --user flask sqlalchemy flask-sqlalchemy flask-marshmallow SQLAlche
python3 main.py
### MAYBE:
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)
### TODO:
-- Without redirects (after creation) the potential for reload's trying to re-add objects may suck...
-> see if I can see how to pass alert/message through to /owneds somehow ... if I can even pass a global or some shit then pick it up in the python code?
- need to create all classes (green + button)
- need to create series, loan, book classes (and make green + button work)
- need to delete all classes (and watch for referential integrity)
- need to add 1 author to book, book to sub_book, series
- need to delete 1 author from book
@@ -37,9 +39,3 @@ python3 main.py
- show books on shelf list
- show books to buy view / printable
- with ORM: do I to lazy load all books (ajax the 2nd->last pages in, or not use ORM, and do a quick db.execute()....)
### MAYBE:
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)