Drone flights and Bulk Logging WIPs

This commit is contained in:
2026-06-19 17:27:33 -04:00
parent 1952b89ecf
commit 78d738b0ee
18 changed files with 2051 additions and 70 deletions
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Drone Flight Request Update</title>
</head>
<body style="font-family: Arial, sans-serif; line-height: 1.5; color: #222;">
<h2>Drone Flight Request Update</h2>
<p>Hello {{ name }},</p>
<p>{{ message }}</p>
<table cellpadding="6" cellspacing="0" style="border-collapse: collapse;">
<tr><td><strong>Reference</strong></td><td>{{ reference_number }}</td></tr>
<tr><td><strong>Status</strong></td><td>{{ status }}</td></tr>
<tr><td><strong>Takeoff</strong></td><td>{{ takeoff_time }}</td></tr>
<tr><td><strong>Completion</strong></td><td>{{ completion_time }}</td></tr>
<tr><td><strong>Location</strong></td><td>{{ location }}</td></tr>
<tr><td><strong>Max elevation</strong></td><td>{{ maximum_elevation_ft_amsl }} ft AMSL</td></tr>
</table>
{% if edit_url %}
<p>You can <a href="{{ edit_url }}">view, update, or cancel your drone request</a> using this secure link.</p>
{% endif %}
<p>Please quote your reference number in any replies.</p>
</body>
</html>