{% extends "newbase.html" %} {% block title %}Change Charts Settings {% endblock %} {% block main %}

Data Treatment Settings of {{ rower.user.first_name }} {{ rower.user.last_name }}

It is recommended to leave this to default settings

{% csrf_token %} {{ datasettingsform.as_table }}

Charts Settings of {{ rower.user.first_name }} {{ rower.user.last_name }}

Use this form to change some of the characteristics of the static charts, as well as the pace axis ranges on the flex charts. The grid option overlays grid lines over the charts. The fastest and slowest pace determine cutoff values for pace.

{% csrf_token %} {{ staticchartform.as_table }}

Use this form to change the default axes for the stacked workout chart.

{% csrf_token %} {{ stackedchartform.as_table }}

Workout Name Settings of {{ rower.user.first_name }} {{ rower.user.last_name }}

Use this form to change how the workout is named in charts. Our recommendation is name, date, rower first name, rower last name, workout type as a minimum.

{{ workoutnametemplate_formset.management_form }} {{ workoutnametemplate_formset.as_table }}
{% csrf_token %}

Change Favorite Charts of {{ rower.user.first_name }} {{ rower.user.last_name }}

    {% csrf_token %}
  • {{ favorites_formset.management_form }}
  • {% for favorites_form in favorites_formset %}
  • Chart {{ forloop.counter }}

    {{ favorites_form.as_table }}
  • {% endfor %}
{% endblock %} {% block sidebar %} {% include 'menu_profile.html' %} {% endblock %}