{% extends "newbase.html" %} {% load staticfiles %} {% load rowerfilters %} xo {% block title %}Rowsandall Workouts List{% endblock %} {% block scripts %} {% endblock %} {% block main %}
  • {{ dateform.as_table }}
    {% csrf_token %}

    {% if team %}

    {% else %} {% endif %}

  • {{ interactiveplot |safe }} {{ the_div |safe }}
  • {% 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 rankingonly and not team %} Show All Workouts {% elif not team %} Show Only Ranking Pieces {% endif %}

  • {% if workouts %} {% if not team %} {% else %} {% endif %} {% for workout in workouts %} {% if workout.rankingpiece %} {% else %} {% endif %} {% if workout.user.user == user or user == team.manager %} {% if workout.name != '' %} {% else %} {% endif %} {% else %} {% if workout.name != '' %} {% else %} {% endif %} {% endif %} {% if not team %} {% else %} {% 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 }} Export {{ workout.user.user.first_name }} {{ workout.user.user.last_name }} Flex Delete
    {% else %}

    No workouts found

    {% endif %}
  • {% if announcements %}
  • What's New?

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