31 lines
487 B
HTML
31 lines
487 B
HTML
{% extends "emailbase.html" %}
|
|
{% block body %}
|
|
<p>Dear <strong>{{ username }}</strong>,</p>
|
|
|
|
<p>
|
|
The result that you have submitted for the virtual challenge {{ racename }} has been
|
|
removed.
|
|
</p>
|
|
|
|
<p>
|
|
The reason for the removal was: <i>{{ reason }}</i>.
|
|
</p>
|
|
|
|
<p>
|
|
You added the following explanation:
|
|
<p>
|
|
|
|
<p>
|
|
<i>{{ message }}</i>
|
|
</p>
|
|
|
|
|
|
<p>
|
|
You are still registered for the challenge and can submit a result.
|
|
</p>
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|