{% extends "newbase.html" %} {% load static %} {% load rowerfilters %} {% block title %}Workouts{% endblock %} {% block main %}

Workout {{ id }} Sensor Fusion

  • 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 }}

    {{ searchform }}

    Select start and end date for a date range:

    {{ dateform.as_table }}
    {% csrf_token %}

  • Fuse this workout with data from:

    {% if workouts %}

    {% 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 %}

    {% for cworkout in workouts %} {% if id == cworkout.id %} {% else %} {% endif %} {% endfor %}
    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 }}   Fusion
    {% else %}

    No workouts found

    {% endif %}
{% endblock %} {% block sidebar %} {% include 'menu_workout.html' %} {% endblock %}