Files
PyRIGS/RIGS/templates/email/eventauthorisation_client_success.html
Arona Jones 0117091f3e FEAT #513: Implement email reminders to complete risk assessments (#514)
* FEAT #513: Implement email reminders to complete risk assessments

* Add missing f-string tag
2022-11-19 15:34:15 +00:00

16 lines
517 B
HTML

{% extends 'base_client_email.html' %}
{% block content %}
<p>Hi {{ to_name|default:"there" }},</p>
<p>
Your event <b>N{{ object.event.pk|stringformat:"05d" }}</b> has been successfully authorised
for <b>&pound;{{ object.amount }}</b>
by <b>{{ object.name }}</b> as of <b>{{ object.event.last_edited_at }}</b>.
</p>
<p>Your event is now fully booked and payment will be processed by the finance department automatically.</p>
<p>TEC PA &amp; Lighting</p>
{% endblock %}