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

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

{% endif %}

Comments {{ workout.name }}

{% localtime on %}
Rower:{{ first_name }} {{ last_name }}
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 %}
{% for c in comments %}
{{ c.created }} {{ c.user.first_name }} {{ c.user.last_name }}
{{ c.comment }}
{% endfor %}
{{ form.as_table }}
{% csrf_token %}

Images linked to this workout

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

No graphs found

{% endif %}

Workout Summary

      {{ workout.summary }}
    

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