{% extends "newbase.html" %} {% load staticfiles %} {% 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 %}
  • {{ interactiveplot |safe }} {{ the_div |safe }}
  • Filter on date

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

    and keyword

    {{ searchform }}

    {% if rankingonly and not team %} Show All Workouts {% elif not team %} Show Only Ranking Pieces {% 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 %} {% if not team %} {% else %} {% endif %} {% for workout in workouts %} {% if workout.rankingpiece %} {% else %} {% endif %} {% if workout|may_edit:request %} {% if workout.name != '' %} {% else %} {% endif %} {% else %} {% if workout.name != '' %} {% else %} {% endif %} {% endif %} {% if team %} {% endif %} {% endfor %}
    R Date Time Name Type Distance Duration Avg HR Max HR   Owner
    {% if workout.rankingpiece %} ☆ {% else %} ☆ {% endif %} {{ workout.date|date:"Y-m-d" }} {{ workout.starttime|date:"H:i" }} {{ workout.name }} No Name {{ workout.name }}No Name {{ workout.workouttype }} {{ workout.distance }}m {{ workout.duration |durationprint:"%H:%M:%S.%f" }} {{ workout.averagehr }} {{ workout.maxhr }} {% if workout|may_edit:request %} {{ workout.user.user.first_name }} {{ workout.user.user.last_name }} {% else %} {{ workout.user.user.first_name }} {{ workout.user.user.last_name }} {% endif %} {% if workout|may_edit:request %} {% else %}   {% endif %} {% if workout|may_edit:request %} {% else %}   {% endif %}
    {% else %}

    No workouts found

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