22 lines
608 B
HTML
22 lines
608 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main_content %}
|
|
<h3>Show All Authors</h3>
|
|
{% if message|length %}
|
|
<div class="row alert alert-{{alert}}">
|
|
{{message}}
|
|
{{ ClearStatus() }}
|
|
</div>
|
|
{% endif %}
|
|
<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 %}
|