34 lines
738 B
HTML
34 lines
738 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>Dear <strong>{{ first_name }}</strong>,</p>
|
|
|
|
<p>
|
|
Your Rowsandall OTW calculations are ready.
|
|
</p>
|
|
<p>
|
|
Thank you for using rowsandall.com.
|
|
</p>
|
|
<p>
|
|
Rowsandall OTW calculations have not been fully implemented yet.
|
|
</p>
|
|
<p>
|
|
We are now running an experimental version for debugging purposes.
|
|
</p>
|
|
<p>
|
|
Your wind/stream corrected plot is available here:
|
|
<a href="{{ siteurl }}/rowers/workout/{{ workoutid }}/interactiveotwplot">
|
|
{{ siteurl }}/rowers/workout/{{ workoutid }}/interactiveotwplot</a>
|
|
</p>
|
|
<p>
|
|
Please report any bugs/inconsistencies/unexpected results
|
|
by reply to this email.
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Physics Department
|
|
</p>
|
|
{% endblock %}
|