26 lines
489 B
HTML
26 lines
489 B
HTML
{% extends 'flask_user/_public_base.html' %}
|
|
{% block content %}
|
|
|
|
<p> </p>
|
|
<h1 style="text-align: center;">Last Known Location</h1>
|
|
|
|
<div class="row container-fluid" >
|
|
<div class="col-sm-12">
|
|
<table data-toggle="table" data-pagination="true" data-search="true" >
|
|
<thead>
|
|
<tr>
|
|
<th>Callsign</th>
|
|
<th>Latitude</th>
|
|
<th>Longitude</th>
|
|
<th>Time</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{markup_content}}
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
<p> </p>
|
|
{% endblock %}
|