Created books.html

parent 01af83f3
{% extends "base.html" %}
{% block page-title %}My Favorite Books{% endblock %}
{% block content %}
<header>
<h1>Dianne's Favorite Books:<br></h1>
</header>
<body>
<ul>
{% for book in books_list %}
<li>
<ol>
<a style="text-decoration:none" href="{% url 'bookshelf:book_detail' book.id %}">{{ book.title }}</a>
</ol>
</li>
{% endfor %}
</ul>
<div class="flex-parent jc-center">
<button onclick="location.href = '/bookshelf/home'" class="green margin-right">Home</button>
<button onclick="location.href = '/bookshelf/home/authors'" class="pink">Authors</button>
</div>
</body>
{% endblock %}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment