{% extends "newbase.html" %} {% load static %} {% load rowerfilters %} {% block title %}Planned Sessions{% endblock %} {% block main %} {% if theteam %}

Group Overview. Team {{ theteam.name }}

{% else %}

Group Overview

{% endif %}
  • {{ dateform.as_table }}

  • Back by {{ timeperiod|timedeltadays }} days

    Forward by {{ timeperiod|timedeltadays }} days

  • {% for r in rowers %} {% endfor %} {% for thedict in statusdict %} {% for r in rowers %} {% endfor %} {% endfor %}
    On or after On or before Preferred date Name
    {{ r.user.first_name }} {{ r.user.last_name }}
    {{ thedict|lookup:'startdate'|date:"Y-m-d" }} {{ thedict|lookup:'enddate'|date:"Y-m-d" }} {{ thedict|lookup:'preferreddate'|date:"Y-m-d" }} {% if thedict|lookup:'name' %} {{ thedict|lookup:'name' }} {% else %} Unnamed Session {% endif %} {% if thedict|lookup:'results'|lookup:r.id != 'not assigned' %}   {% else %}   {% endif %}

    Get Calendar File

    {% if rower|is_coach:rowers %}

    Send Calendar File to all rowers

    {% endif %}
  • {% if unmatchedworkouts %}
  • Workouts that are not linked to any session

    {% for workout in unmatchedworkouts %} {% if workout.user.user == user or user == team.manager %} {% if workout.name != '' %} {% else %} {% endif %} {% else %} {% if workout.name != '' %} {% else %} {% endif %} {% endif %} {% endfor %}
    Rower Date Time Name Type Distance Duration Avg HR Max HR
    {{ workout.user.user.first_name }} {{ workout.user.user.last_name }} {{ 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 }}
  • {% endif %}
{% endblock %} {% block sidebar %} {% include 'menu_plan.html' %} {% endblock %}