Files
books/templates/show_id_name.html

22 lines
563 B
HTML

{% extends "base.html" %}
{% block main_content %}
<h3>{{page_title}}</h3>
{% if message|length %}
<div class="row alert alert-{{alert}}">
{{message}}
{{ ClearStatus() }}
</div>
{% endif %}
<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 obj in objects %}
<tr><td data-sort="{{obj.id}}"><a href="{{url_for(url_base, id=obj.id )}}">{{obj.name}}</a></td></tr>
{% endfor %}
</tbody>
</table>
{% endblock main_content %}