18 lines
474 B
HTML
18 lines
474 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main_content %}
|
|
<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>
|
|
{% endblock main_content %}
|