16 lines
444 B
HTML
16 lines
444 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main_content %}
|
|
<h3>Show All Reference Images</h3>
|
|
<table id="refimg_table" class="table table-striped table-sm" data-toolbar="#toolbar" data-search="true">
|
|
<thead>
|
|
<tr class="thead-light"><th>Filename</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for refimg in refimgs %}
|
|
<tr><td><a href="{{url_for('refimg', id=refimg.id )}}">{{refimg.fname}}</td></tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock main_content %}
|