{% extends "newbase.html" %} {% load static %} {% load rowerfilters %} {% block title %}Rowsandall Gold Medal Score {% endblock %} {% block scripts %} {% endblock %} {% block main %} {% if rower.user %}

Gold Medal Scores for {{ rower.user.first_name }}

{% else %}

Gold Medal Scores for {{ user.first_name }}

{% endif %}
  • Hover over the workout to see details, click on the workout to open in a separate page.

    {{ the_div|safe }}
  • {{ form.as_table }}
    {% csrf_token %}
  • Explanation

  • {% if bestworkouts %}
  • Marker Workouts

    {% for w in bestworkouts %} {% endfor %}
    Date Workout Gold Medal Score Duration
    {{ w.date }} {{ w.name }} {{ w.goldmedalstandard|floatformat:"0" }} % {{ w.goldmedalseconds|secondstotimestring }}
  • {% endif %}
  • Automatically generate marker workouts
{{ chartscript |safe }}
{% endblock %} {% block sidebar %} {% include 'menu_analytics.html' %} {% endblock %}