{% extends "base.html" %} {% load staticfiles %} {% load rowerfilters %} {% block title %}Workouts{% endblock %} {% block content %} {{ interactiveplot |safe }}

Ranking Pieces (Indoor Rower)

Summary for {{ theuser.first_name }} {{ theuser.last_name }} between {{ startdate|date }} and {{ enddate|date }}

Direct link for other users: http://rowsandall.com/rowers/{{ id }}/ote-bests/{{ startdate|date:"Y-m-d" }}/{{ enddate|date:"Y-m-d" }}

The table gives the best efforts achieved on the official Concept2 ranking pieces in the selected date range.

This page will evolve and try to give you guidance on where to improve.

Use this form to select a different date range:

Select start and end date for a date range:

{{ dateform.as_table }}
{% csrf_token %}
Or use the last {{ deltaform }} days.
{% csrf_token %}

Ranking Piece Results

{% if rankingworkouts %} {% for workout in rankingworkouts %} {% endfor %}
Distance Duration Date Avg HR Max HR Edit
{{ workout.distance }} {{ workout.duration |durationprint:"%H:%M:%S.%f" }} {{ workout.date }} {{ workout.averagehr }} {{ workout.maxhr }} {{ workout.name }}
{% else %}

No ranking workouts found

{% endif %}

Critical Power Plot

{{ the_div|safe }}

Pace predictions for Ranking Pieces

Add non-ranking piece using the form. The piece will be added in the prediction tables below.

{{ form.value }} {{ form.pieceunit }} {% csrf_token %}

Paul's Law

{% if nrdata >= 1 %} {% for pred in predictions %} {% for key, value in pred.items %} {% if key == "distance" %} {% endif %} {% if key == "pace" %} {% endif %} {% if key == "power" %} {% endif %} {% if key == "duration" %} {% endif %} {% endfor %} {% endfor %}
Duration Distance Power Pace
{{ value }} m {{ value |durationprint:"%M:%S.%f" }} {{ value }} W {{ value |durationprint:"%H:%M:%S.%f" }}
{% else %}

Insufficient data to make predictions

{% endif %}

CP Model

{% if nrdata >= 4 %} {% for pred in cpredictions %} {% for key, value in pred.items %} {% if key == "distance" %} {% endif %} {% if key == "pace" %} {% endif %} {% if key == "power" %} {% endif %} {% if key == "duration" %} {% endif %} {% endfor %} {% endfor %}
Duration Distance Power Pace
{{ value }} m {{ value |durationprint:"%M:%S.%f" }} {{ value }} W {{ value |durationprint:"%H:%M:%S.%f" }}
{% else %}

Insufficient data to make predictions

{% endif %}
{% endblock %}