import log lines also included, with appropriate DB / html

This commit is contained in:
2021-01-14 12:09:32 +11:00
parent 3684f279e4
commit 2dc80d4399
2 changed files with 21 additions and 4 deletions

View File

@@ -41,5 +41,15 @@
</div>
</div>
</div>
<div class="row col-lg-12">
<table id="import_tbl" class="table table-striped table-sm" data-toolbar="#toolbar" data-search="true">
<thead><tr class="thead-light"><th>When</th><th>Details</th></tr></thead>
<tbody>
{% for log in logs %}
<tr><td>{{log.log_date|vicdate}}</td><td>{{log.log}}</td></tr>
{% endfor %}
</tbody>
</table>
</div>
</div class="containter">
{% endblock main_content %}