28 lines
579 B
HTML
28 lines
579 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 }} {{ rowerlastname }}, 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 %}
|