{% extends "newbase.html" %} {% load static %} {% load rowerfilters %} {% block title %}Change Rower Preferences{% endblock %} {% block main %}

User Preferences for {{ rower.user.first_name }} {{ rower.user.last_name }}

Need help? Click to read the tutorial

  • Functional Threshold Power and OTW Slack

    Use this form to quickly change your zones based on the power of a recent full out 60 minutes effort on the ergometer. It will update all zones defined.

    The OTW Power Slack is the percentage drop of your On-the-water rowing power vs the erg power. Typical values are around 15%. This will lower the power zones for your OTW workouts.

    If you use default power zones, we will use the namees and values as defined by Coggan.

    {{ powerform.as_table }}
    {% csrf_token %}
  • Power Zones

    Use this form if you want to rename and redefine your power zones independent of the value of FTP. We recommend, however, that you leave these values as they are and only change the FTP and OTW slack values.

    {% if powerzonesform.errors %}

    Please correct the error{{ powerzonesform.errors|pluralize }} below. {{ powerzonesform.non_field_errors }}

    {% endif %}
    ID Zone NameLower Boundary (Watt) Lower Boundary (Watt)
    IndoorOTW
    1{{ powerzonesform.ut3name }}
    2{{ powerzonesform.ut2name }} {{ powerzonesform.pw_ut2 }} {{ user.rower.pw_ut2|otwslack:user }}
    3{{ powerzonesform.ut1name }} {{ powerzonesform.pw_ut1 }} {{ user.rower.pw_ut1|otwslack:user }}
    4{{ powerzonesform.atname }} {{ powerzonesform.pw_at }} {{ user.rower.pw_at|otwslack:user }}
    5{{ powerzonesform.trname }} {{ powerzonesform.pw_tr }} {{ user.rower.pw_tr|otwslack:user }}
    6{{ powerzonesform.anname }} {{ powerzonesform.pw_an }} {{ user.rower.pw_an|otwslack:user }}
    {% csrf_token %}
  • Fitness and Performance Manager Settings

    Use this form to change the parameters affecting your performance management.

    A shorter range for the CP calculations will give you notifications of fitness improvements more often, but will also quickly forget those breakthrough workouts. Shorter decay time constants for the performance manager will model a quicker building up of fitness and a faster recovery. Recommended values are 42 days (fitness) and 7 days (fatigue).

    {{ cpform.as_table }}
    {% csrf_token %}
  • Heart Rate Zones

    Set your heart rate zones with this form.

    {% if form.errors %}

    Please correct the error{{ form.errors|pluralize }} below. {{ form.non_field_errors }}

    {% endif %}
    IDZone NameLower Boundary (BPM)
    1{{ form.hrrestname }} {{ form.rest }}
    2{{ form.hrut2name }} {{ form.ut2 }}
    3{{ form.hrut1name }} {{ form.ut1 }}
    4{{ form.hratname }} {{ form.at }}
    5{{ form.hrtrname }} {{ form.tr }}
    6{{ form.hranname }} {{ form.an }}
    7{{ form.hrmaxname }} {{ form.max }}
    {% csrf_token %}
{% endblock %} {% block sidebar %} {% include 'menu_profile.html' %} {% endblock %}