{% extends "base.html" %} {% load staticfiles %} {% load rowerfilters %} {% block title %}Rowsandall Workouts List{% endblock %} {% block content %}
Select start and end date for a date range:
{% if team %}
{% else %} {% endif %} {{ dateform.as_table }}
{% csrf_token %}
{% if team %}
{% include "teambuttons.html" with teamid=team.id team=team %}
{% endif %}
{% if team %}

{{ team.name }} Team Workouts

{% else %}

My Workouts

{% endif %} {% if workouts %} {% if not team %} {% else %} {% endif %} {% for workout in workouts %} {% if workout.rankingpiece %} {% else %} {% endif %} {% else %} No Name {% endif %} {% else %} {% if workout.name != '' %} {{ workout.name }} {% else %} No Name {% endif %} {% endif %} {% if not team %} {% else %} {% endif %} {% endfor %}
Date Time Name Type Distance Duration Avg HR Max HR     Owner
{{ workout.date|date:"Y-m-d" }} {{ workout.starttime|date:"H:i" }} {% if workout.user.user == user or user == team.manager %} {% if workout.rankingpiece %} [RANKING PIECE] {% endif %} {% if workout.name != '' %} {{ workout.name }} {{ workout.workouttype }} {{ workout.distance }}m {{ workout.duration |durationprint:"%H:%M:%S.%f" }} {{ workout.averagehr }} {{ workout.maxhr }} Export {{ workout.user.user.first_name }} {{ workout.user.user.last_name }} Flex Delete
{% else %}

No workouts found

{% endif %}
{% if team %}

 

{% endif %}
{{ interactiveplot |safe }} {{ the_div |safe }}
{% 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 rankingonly and not team %}
All Workouts
{% elif not team %}
Ranking Pieces Only
{% endif %}
Glue Workouts

 

{% if team %}
{% else %} {% endif %}
{% if workouts.has_previous %} {% if request.GET.q %} < {% else %} < {% endif %} {% endif %} Page {{ workouts.number }} of {{ workouts.paginator.num_pages }}. {% if workouts.has_next %} {% if request.GET.q %} > {% else %} > {% endif %} {% endif %} {% endblock %}