{{ book.title }}
28 |Publication Year: {{ book.publication_year }}
48 |ISBN: {{ book.isbn }}
49 | 50 |Description
51 |{{ description if description else 'No description available.' }}
52 |├── data └── library.sqlite ├── static ├── background.jpeg ├── script.js └── styles.css ├── requirements.txt ├── templates ├── add_author.html ├── add_book.html ├── book_detail.html └── home.html ├── data_models.py ├── README.md └── app.py /data/library.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ell-716/Book-Alchemy/HEAD/data/library.sqlite -------------------------------------------------------------------------------- /static/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ell-716/Book-Alchemy/HEAD/static/background.jpeg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==3.0.3 2 | Flask-SQLAlchemy==3.1.1 3 | Jinja2==3.1.4 4 | requests==2.32.3 5 | SQLAlchemy==2.0.36 6 | -------------------------------------------------------------------------------- /templates/add_author.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |{{ success_message }}
27 | {% endif %} 28 | 29 | 30 | {% if warning_message %} 31 |{{ warning_message }}
32 | {% endif %} 33 | 34 | 35 | 36 | 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /templates/add_book.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |{{ success_message }}
27 | {% endif %} 28 | 29 | 30 | {% if warning_message %} 31 |{{ warning_message }}
32 | {% endif %} 33 | 34 | 35 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /templates/book_detail.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |Publication Year: {{ book.publication_year }}
48 |ISBN: {{ book.isbn }}
49 | 50 |{{ description if description else 'No description available.' }}
52 |