28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
<!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>
|