25 lines
590 B
HTML
25 lines
590 B
HTML
{% extends "emailbase.html" %}
|
|
{% block body %}
|
|
<p>Dear <strong>{{ username }}</strong>,</p>
|
|
|
|
<p>
|
|
One of your competitors, {{ registeredname }}, has submitted a result for {{ racename }}
|
|
</p>
|
|
|
|
|
|
<p>
|
|
Check out the results on the challenge page!
|
|
<a href="{{ siteurl }}/rowers/virtualevent/{{ raceid }}">{{ racename }}</a>
|
|
</p>
|
|
|
|
<p>
|
|
You are receiving this email because you are on the start list for this challenge.
|
|
If you do not wish to receive these notifications, you can switch them off
|
|
throught the link above.
|
|
</p>
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|