Files
books/templates/authors.html

16 lines
489 B
HTML

{% extends "base.html" %}
{% block main_content %}
<h3>Show All Authors</h3>
<table id="book_table" class="table table-striped table-sm" data-toolbar="#toolbar" data-search="true">
<thead>
<tr class="thead-light"><th>Surname</th><th>Firstname(s)</th></tr>
</thead>
<tbody>
{% for author in authors %}
<tr><td><a href="{{url_for('author', id=author.id )}}">{{author.surname}}</a></td><td>{{author.firstnames}}</td></tr>
{% endfor %}
</tbody>
</table>
{% endblock main_content %}