{% extends "newbase.html" %} {% load staticfiles %} {% load rowerfilters %} xo {% block title %}Rowsandall Workouts List{% endblock %} {% block scripts %} {% endblock %} {% block main %}
{% if team %}
{% 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 %}
{% if rankingonly and not team %} Show All Workouts {% elif not team %} Show Only Ranking Pieces {% endif %}
| R | Date | Time | Name | Type | Distance | Duration | Avg HR | Max HR | {% if not team %}{% else %} | Owner | {% endif %}||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {% if workout.rankingpiece %} ★ {% else %} ☆ {% endif %} | {{ workout.date|date:"Y-m-d" }} | {{ workout.starttime|date:"H:i" }} | {% if workout.user.user == user or user == team.manager %} {% if workout.name != '' %}{{ workout.name }} | {% else %}No Name | {% endif %} {% else %} {% if workout.name != '' %}{{ workout.name }} | {% else %}No Name | {% endif %} {% endif %}{{ workout.workouttype }} | {{ workout.distance }}m | {{ workout.duration |durationprint:"%H:%M:%S.%f" }} | {{ workout.averagehr }} | {{ workout.maxhr }} | {% if not team %}Export | {% else %}{{ workout.user.user.first_name }} {{ workout.user.user.last_name }} | {% endif %}Flex | Delete | |
No workouts found
{% endif %}