{% extends "base.html" %} {% load staticfiles %} {% load rowerfilters %} {% block title %}View Workout {% endblock %} {% block content %}

Workout Data

Rower:{{ first_name }} {{ last_name }}
Name:{{ workout.name }}
Date:{{ workout.date }}
Time:{{ workout.starttime }}
Distance:{{ workout.distance }}m
Duration:{{ workout.duration |durationprint:"%H:%M:%S.%f" }}
Type:{{ workout.workouttype }}
Weight Category:{{ workout.weightcategory }}

Workout Summary

{{ workout.summary }}

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 %}
{{ interactiveplot |safe }}
{{ the_div|safe }}
{% endblock %}