Private
Public Access
1
0
Files
rowsandall/rowers/templates/newftpemail.html
Sander Roosendaal f9bd364e0d email improved
2022-12-17 17:29:51 +01:00

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 %}