hbnet/web/templates/aprs_page.html

26 lines
489 B
HTML
Raw Normal View History

{% extends 'flask_user/_public_base.html' %}
{% block content %}
<p>&nbsp;</p>
<h1 style="text-align: center;">Last Known Location</h1>
2021-10-06 00:19:35 -04:00
<div class="row container-fluid" >
<div class="col-sm-12">
2021-10-05 23:33:12 -04:00
<table data-toggle="table" data-pagination="true" data-search="true" >
<thead>
<tr>
2021-10-05 23:33:12 -04:00
<th>Callsign</th>
<th>Latitude</th>
<th>Longitude</th>
<th>Time</th>
</tr>
2021-10-05 23:33:12 -04:00
</thead>
<tbody>
{{markup_content}}
2021-10-05 23:33:12 -04:00
</tbody>
</table>
<p>&nbsp;</p>
{% endblock %}