allerta-vvf/server/templates/log.html

31 lines
789 B
HTML
Raw Normal View History

2020-04-27 23:27:39 +02:00
{% extends "base.html" %}
{% block content %}
2020-11-14 23:00:36 +01:00
<br>
<img alt="VVF" src="./resources/images/owner.png" width="150"
style="display: block; margin-left: auto; margin-right: auto;">
<br>
2020-11-21 21:41:37 +01:00
<div id="list" class="table-responsive">
2021-02-24 20:02:29 +01:00
<table id="table" class="table table-striped table-bordered dt-responsive nowrap">
2020-11-14 23:00:36 +01:00
<thead>
<tr>
<th>{{ 'Action'|t }}</th>
<th>{{ 'Interested'|t }}</th>
<th>{{ 'Made by'|t }}</th>
<th>{{ 'Datetime'|t }}</th>
</tr>
</thead>
<tbody id="table_body">
</tbody>
</table>
<script>
2021-04-05 18:57:52 +02:00
loadTable({tablePage: "log", set_interval: false, callback: function(table_dt) {
table_dt
.column( '3:visible' )
.order( 'desc' )
.draw();
}});
2020-11-14 23:00:36 +01:00
</script>
<br>
<br>
{% endblock %}