{% extends "base.html" %} {% load staticfiles %} {% load rowerfilters %} {% load tz %} {% block title %}Change Workout {% endblock %} {% block content %}
{% if form.errors %}

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

{% endif %}

Edit Workout Data

Advanced

Advanced Functionality (More interactive Charts)
{% localtime on %}
Date/Time:{{ workout.startdatetime }}
Distance:{{ workout.distance }}m
Duration:{{ workout.duration |durationprint:"%H:%M:%S.%f" }}
Public link to this workout https://rowsandall.com/rowers/workout/{{ workout.id }}
Public link to interactive chart https://rowsandall.com/rowers/workout/{{ workout.id }}/interactiveplot
{% endlocaltime %}
{{ form.as_table }}
{% csrf_token %}

Images linked to this workout

Generating images takes roughly 1 second per minute of your workout's duration. Please reload after a minute or so.

{% if graphs1 %} {% for graph in graphs1 %} {% if forloop.counter == 1 %} {% elif forloop.counter == 3 %} {% else %} {% endif %} {% endfor %} {% for graph in graphs2 %} {% if forloop.counter == 1 %} {% elif forloop.counter == 3 %} {% else %} {% endif %} {% endfor %} {% else %}

No graphs found

{% endif %}

Workout Summary

{{ workout.summary }}

{{ gmscript |safe }} {{ gmdiv|safe }}
{% endblock %}