Private
Public Access
1
0
Files
rowsandall/rowers/templates/alertemail.html
2019-09-27 12:00:06 +02:00

28 lines
558 B
HTML

{% extends "emailbase.html" %}
{% block body %}
<p>Dear <strong>{{ first_name }}</strong>,</p>
<p>
Here is the report for your alert <strong>{{ alertname }}</strong> on <a href="{{ siteurl }}">rowsandall.com</a>. This is a report for your athlete {{ rowerfirstname }}, covering the period from
{{ startdate }} to {{ enddate }}.
</p>
{% for text in othertexts %}
<p>
{{ text|safe }}
</p>
{% endfor %}
{% for key, value in report.items() %}
<p>
{{ key }}: {{ value }}
</p>
{% endfor %}
<p>
Best Regards, the Rowsandall Team
</p>
{% endblock %}