mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
* FEAT #513: Implement email reminders to complete risk assessments * Add missing f-string tag
16 lines
517 B
HTML
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>£{{ 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 & Lighting</p>
|
|
{% endblock %}
|