{% extends "newbase.html" %} {% load static %} {% load rowerfilters %} {% block title %}Workouts{% endblock %} {% block main %}
| 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 }} |
Select start and end date for a date range:
{% 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 %}
| Date | Time | Name | Type | Distance | Duration | Avg HR | Max HR | Fusion | |
|---|---|---|---|---|---|---|---|---|---|
| {{ cworkout.date }} | {{ cworkout.starttime }} | {{ cworkout.name }} | {{ cworkout.workouttype }} | {{ cworkout.distance }}m | {{ cworkout.duration |durationprint:"%H:%M:%S.%f" }} | {{ cworkout.averagehr }} | {{ cworkout.maxhr }} | {% if id == cworkout.id %}{% else %} | Fusion | {% endif %}
No workouts found
{% endif %}