{% extends "newbase.html" %} {% load staticfiles %} {% load rowerfilters %} {% load tz %} {% block scripts %} {% include "monitorjobs.html" %} {% endblock %} {% block title %}Comment Workout {% endblock %} {% block main %}

{% if workout|previousworkout:rower.user %} Previous  {% endif %} {% if workout|nextworkout:rower.user %} Next {% 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 }}
    {% endlocaltime %}
  • {% for c in comments %} {{ c.created }} {{ c.user.first_name }} {{ c.user.last_name }}
    {{ c.comment }}
    {% endfor %}
    {{ form.as_table }}
    {% csrf_token %}
  • {% for graph in graphs %}
  • {{ graph.filename }}
  • {% endfor %}
  • Workout Summary

            {{ workout.summary }}
          

  • {{ gmscript |safe }}
    {{ gmdiv|safe }}
{% endblock %} {% block sidebar %} {% include 'menu_workout.html' %} {% endblock %}