27 lines
497 B
HTML
27 lines
497 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 }}.
|
|
</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 %}
|
|
|