Private
Public Access
1
0
Files
rowsandall/rowers/templates/alertemail.html
2019-08-19 12:55:54 +02:00

21 lines
338 B
HTML

{% extends "emailbase.html" %}
{% block body %}
<p>Dear <strong>{{ first_name }}</strong>,</p>
<p>
Here is the report for your alert on <a href="{{ siteurl }}">rowsandall.com</a>.
</p>
{% for key, value in report.items() %}
<p>
{{ key }}: {{ value }}
</p>
{% endfor %}
<p>
Best Regards, the Rowsandall Team
</p>
{% endblock %}