Book Database
{% if books_list %}
{% for book in books_list %}
{{book.title}}
| {{book.author}}
{% endfor %}
{% else %}
No books entered in the database.
{% endif %}