17 lines
526 B
HTML
17 lines
526 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main_content %}
|
|
|
|
<h3>Missing Books</h3>
|
|
<table id="missing_table" class="table table-striped table-sm" data-toolbar="#toolbar" data-search="true">
|
|
<thead>
|
|
<tr class="thead-light"><th>Books</th><th>Series</th><th>Number of Books in Series</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for obj in books %}
|
|
<tr><td>{{obj.missing}}</td><td><a href="{{url_for('series', id=obj.id )}}">{{obj.title}}</a></td><td>{{obj.num_books}}</td></tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock main_content %}
|