16 lines
417 B
HTML
16 lines
417 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main_content %}
|
|
<h3>Genres</h3>
|
|
<table id="book_table" class="table table-striped table-sm" data-toolbar="#toolbar" data-search="true">
|
|
<thead>
|
|
<tr class="thead-light"><th>Name</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for genre in genres %}
|
|
<tr><td><a href="{{url_for('genre', id=genre.id )}}">{{genre.name}}</a></td></tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock main_content %}
|