Created authors.html

parent 3cfa8517
{% extends "base.html" %}
{% block page-title %}My Favorite Authors{% endblock %}
{% block content %}
<header>
<h1>Dianne's Favorite Authors:<br></h1>
</header>
<body>
<ul>
{% for author in authors_list %}
<li>
<ol>
<a style="text-decoration:none" href="{% url 'bookshelf:author_detail' author.id %}">{{ author.first_name }} {{ author.last_name }}</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/books'" class="blue">Books</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