{% extends "base.html" %} {% load staticfiles %} {% load rowerfilters %} {% block title %}Workouts{% endblock %} {% block content %}
Select start and end date for a date range:
{{ dateform.as_table }}
{% csrf_token %}

My Workouts

{% if workouts %} {% for workout in workouts %} {% else %} {{ workout.name }} {% endif %} {% endfor %}
Date Time Name Type Distance Duration Avg HR Max HR Delete Export
{{ workout.date |truncatechars:15}} {{ workout.starttime }} {% if user.rower.rowerplan == 'pro' %} {{ workout.name }} {{ workout.workouttype }} {{ workout.distance }}m {{ workout.duration |durationprint:"%H:%M:%S.%f" }} {{ workout.averagehr }} {{ workout.maxhr }} Delete Export Flex
{% else %}

No workouts found

{% endif %}
{% if announcements %}

What's New?

{% for a in announcements %}
{{ a.created }}: {{ a.announcement|urlize }}
{% endfor %}

 

{% endif %}

About

This site is a beta site, pioneering rowing data visualization and analysis. No warranties. The site's author is Sander Roosendaal. A Masters rower. Read his blog

{% if workouts.has_previous %} < {% endif %} Page {{ workouts.number }} of {{ workouts.paginator.num_pages }}. {% if workouts.has_next %} > {% endif %} {% endblock %}