45 lines
1.5 KiB
HTML
45 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
SAR Records
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container mt-5">
|
|
<h2>SAR Records</h2>
|
|
<table class="table table-bordered table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Id</th>
|
|
<th>Start Date</th>
|
|
<th>Finish Date</th>
|
|
<th>Category</th>
|
|
<th>Latitude</th>
|
|
<th>Longitude</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for sar in sar_calls %}
|
|
<tr>
|
|
<td>{{ sar.id }}</td>
|
|
<td>{{ sar.start_date }}</td>
|
|
<td>{{ sar.finish_date }}</td>
|
|
<td>{{ sar.category }}</td>
|
|
<td>{{ sar.latitude }}</td>
|
|
<td>{{ sar.longitude }}</td>
|
|
<td>
|
|
<a href="{{ url_for('edit_sar', id=sar.id) }}">
|
|
<button type="button" class="btn btn-info">Edit</button>
|
|
</a> |
|
|
<a href="{{ url_for('delete_sar', id=sar.id) }}">
|
|
<button type="button" class="btn btn-danger">Delete</button>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<a href="/dashboard">Back to Dashboard</a>
|
|
</div>
|
|
{% endblock %} |