Files
books/templates/authors.html

14 lines
394 B
HTML

<h3>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><th>Action</th></tr>
</thead>
<tbody>
{% for author in authors %}
<tr><td>{{author.surname}}</td><td>{{author.firstnames}}</td><td>
icons for: E, D
</td></tr>
{% endfor %}
</tbody>
</table>