Files
books/templates/owneds.html

16 lines
446 B
HTML

{% extends "base.html" %}
{% block main_content %}
<h3>Owned List</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 owned in owneds %}
<tr><td data-sort="{{owned.id}}"><a href="{{url_for('owned', id=owned.id )}}">{{owned.name}}</a></td></tr>
{% endfor %}
</tbody>
</table>
{% endblock main_content %}