{% extends "newbase.html" %} {% load static %} {% load rowerfilters %} {% block title %}Rowsandall Workouts List{% endblock %} {% block scripts %} {% endblock %} {% block main %} {% if team %}

{{ team.name }} Team Workouts

{% else %}

Workouts of {{ rower.user.first_name }} {{ rower.user.last_name }}

{% 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 %}
  • {% if workouts %} {% for workout in workouts %}
  • {{ workout.date|date:"Y-m-d" }} {{ workout.starttime|date:"H:i" }} {% if workout.duplicate %} {% endif %} {% if workout.rankingpiece %} {% endif %}
    {% if workout.name != '' %}

    {{ workout.name }}

    {% else %}

    No Name

    {% endif %}
    {% with workout.workouttype|icon|safe as templateName %} {% include templateName %} {% endwith %}
    Distance
    {{ workout.distance|distanceprint }}
    Time
    {{ workout.duration |durationprint:"%H:%M:%S.%f" }}
    {% if workout|may_edit:request %} {% else %}   {% endif %}
    {% if workout|may_edit:request %} {% if rower.defaultlandingpage2 != 'workout_delete' %} {% else %} {% endif %} {% else %}   {% endif %}
  • {% endfor %} {% else %}
  • No workouts found
  • {% endif %}
  • Filter on date

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

    and keyword

    {{ searchform }}

  • Total meters: {{ totalmeters }}. Total time {{ totalhours }}:{{ totalminutes }}h. Dig deeper.

    Activity chart by TRIMP, rScore, Time.

    {{ interactiveplot |safe }} {{ the_div |safe }}
  • {% if announcements %}
  • What's New?

  • {% for a in announcements %}
  • {{ a.created }}: {{ a.announcement|urlshorten:20 }}
  • {% endfor %} {% endif %}
{% endblock %} {% block sidebar %} {% include 'menu_workouts.html' %} {% endblock %}