25 lines
664 B
HTML
25 lines
664 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>Dear <strong>{{ first_name }} {{ last_name }}</strong>,</p>
|
|
|
|
<p>
|
|
{% if mode == 'water' %}
|
|
Your 1 hour rowing effort on water has improved. Your current FTP setting on Rowsandall is
|
|
{{ ftp }} Watt. Your recent 1 hour effort is {{ newftp }} Watt.
|
|
{% else %}
|
|
Your 1 hour effort on the indoor rower has improved. Your current FTP setting on Rowsandall is
|
|
{{ ftp }} Watt. Your recent 1 hour effort is {{ newftp }} Watt.
|
|
{% endif %}
|
|
</p>
|
|
|
|
<p>
|
|
You can set the new value on <a href="{{siteurl}}/rowers/me/prefs/">this settings page</a>.
|
|
</p>
|
|
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|