{% extends "newbase.html" %} {% load static %} {% load rowerfilters %} {% block title %}Workouts{% endblock %} {% block main %} {% if theuser %}

Select {{ theuser.first_name }}'s Workouts for the Trend Flex Chart

{% else %}

Select {{ user.first_name }}'s Workouts for the Trend Flex Chart

{% endif %}
  • You can use the date and search forms to search through all workouts from this team.

    TIP: Agree with your team members to put tags (e.g. '8x500m') in the notes section of your workouts. That makes it easy to search.

  • {% if theuser %}
    {% else %} {% endif %} {{ dateform.as_table }}
    {{ modalityform.as_table }}
    {% csrf_token %}
  • {{ searchform }}
  • {% if workouts %} Toggle All
    {{ form.as_table }}
    {% else %}

    No workouts found

    {% endif %}
  • {% csrf_token %} {{ chartform.as_table }}

{% endblock %} {% block sidebar %} {% include 'menu_analytics.html' %} {% endblock %}