<h1 style="margin-top:0;margin-bottom:16px;font-size:26px;line-height:32px;font-weight:bold;letter-spacing:-0.02em;">Booking cancellation for {{ passengerCount }} passenger{% if passengerCount != 1 %}s{% endif %} at {{ fromPoints.0.pointTime|date('d M Y H:i',fromPoints.0.pointLocation.timeZone) }}</h1>
<p style="margin:0;">
<b>THIS BOOKING HAS BEEN CANCELLED</b>
</p>
<br><br>
{% for waypoint in fromPoints %}
Collecting:<br>
{% for student in waypoint.students %}
{{ student.firstName }} {{ student.lastName }} - {% if student.metaData.mobile %}M:{{ student.metaData.mobile }}{% endif %}<br>
{% endfor %}
From <b>{{ waypoint.pointLocation.friendlyAddress }} at {{ waypoint.pointTime|date('H:i',fromPoints.0.pointLocation.timeZone) }}</b>
{% if (waypoint.pointLocation.lat and waypoint.pointLocation.lon) %}
<br>
<a href="https://www.google.com/maps/search/?api=1&query={{ waypoint.pointLocation.lat }},{{ waypoint.pointLocation.lon }}">
Google Maps
</a>
{% endif %}
{% if (waypoint.pointLocation.whatThreeWords) %}
<br>
<a href="https://what3words.com/{{ waypoint.pointLocation.whatThreeWords }}">
What Three Words
</a>
{% endif %}
<br>
{% endfor %}
<br><br>
{% for waypoint in toPoints %}
Dropping:<br>
At <b>{{ waypoint.pointLocation.friendlyAddress }}</b>
{% if (waypoint.pointLocation.lat and waypoint.pointLocation.lon) %}
<br>
<a href="https://www.google.com/maps/search/?api=1&query={{ waypoint.pointLocation.lat }},{{ waypoint.pointLocation.lon }}">
Google Maps
</a>
{% endif %}
{% if (waypoint.pointLocation.whatThreeWords) %}
<br>
<a href="https://what3words.com/{{ waypoint.pointLocation.whatThreeWords }}">
What Three Words
</a>
{% endif %}
<br>
{% endfor %}
<br><br>
{% if notes %}
<b>Notes:</b>
{% for note in notes %}
<br>
{% for student in note.students %}
{{ student.firstName }} {{ student.lastName }}<br>
{% endfor %}
{{ note.notes }}
<br>
{% endfor %}
{% endif %}