links in book and author detail
parent
d4f23ab507
commit
e9ed5ec76f
@ -0,0 +1,20 @@
|
|||||||
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
|
{% block main %}
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
|
<h1 class="header">{{ author.author_name }}</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<p>Book(s): {% for book in author.books %}
|
||||||
|
|
||||||
|
<li> <a href="{{url_for('show_book_by_id', id=book.id)}}">{{ book.title }}</a> </li>
|
||||||
|
|
||||||
|
{% endfor %}</p>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<a href="{{ url_for('edit_author_by_id', id=author.id )}}">edit</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
Loading…
Reference in New Issue