34 lines
695 B
HTML
34 lines
695 B
HTML
{% extends "emailbase.html" %}
|
|
{% block body %}
|
|
<p>Dear <strong>{{ username }}</strong>,</p>
|
|
|
|
<p>
|
|
Unfortunately, the result that you have submitted for the virtual race {{ racename }} has been rejected by the race organizer.
|
|
</p>
|
|
|
|
<p>
|
|
The reason for the rejection was: <i>{{ reason }}</i>.
|
|
</p>
|
|
|
|
<p>
|
|
The race organizer added the following explanation:
|
|
<p>
|
|
|
|
<p>
|
|
<i>{{ message }}</i>
|
|
</p>
|
|
|
|
<p>
|
|
The decision to reject your result is the sole responsibility of the race organizer. If you disagree with the decision, please do contact him or her.
|
|
</p>
|
|
|
|
<p>
|
|
You are still registered for the race and can submit a result.
|
|
</p>
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|
|
|