2018-12-14 01:58:59 +00:00
|
|
|
{% extends "GeoffreyApp/base.html" %}
|
|
|
|
|
2019-01-12 21:06:06 +00:00
|
|
|
{% block header %}
|
|
|
|
Bases
|
|
|
|
{% endblock %}
|
|
|
|
|
2018-12-14 01:58:59 +00:00
|
|
|
{% block content %}
|
2019-01-12 21:06:06 +00:00
|
|
|
<table id="geoffrey_table" class="table table-hover link-table">
|
|
|
|
<thead class="bg-dark">
|
|
|
|
<tr>
|
|
|
|
<th>Base Name</th>
|
|
|
|
<th>Location</th>
|
|
|
|
<th>Owner</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for base in base_list %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ base.name }} </td>
|
|
|
|
<td>{{ base.location }}</td>
|
|
|
|
<td>{{ base.owner }} </td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2018-12-14 01:58:59 +00:00
|
|
|
|
2019-01-12 21:06:06 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<script>
|
|
|
|
$(document).ready(function () {
|
|
|
|
$('#geoffrey_table').DataTable();
|
|
|
|
});
|
|
|
|
</script>
|
2018-12-14 01:58:59 +00:00
|
|
|
{% endblock %}
|