{% extends "base.html" %} {% load staticfiles %} {% load rowerfilters %} {% block title %}Workouts{% endblock %} {% block content %} {% if team %}
{% include "teambuttons.html" with teamid=team.id team=team %}
{% endif %}
{% if theuser %}

{{ theuser.first_name }}'s Workouts

{% else %}

{{ user.first_name }}'s Workouts

{% endif %}
{% if user.is_authenticated and user|is_manager %}
{% if theuser %}
{% else %} {% endif %} {{ dateform.as_table }}
{% csrf_token %}
{% if workouts %} {{ form.as_table }}
{% else %}

No workouts found

{% endif %}

Warning: You are on an experimental part of the site. Use at your own risk.

Select two or more workouts on the left, set your plot settings below, and press submit"

{% csrf_token %} {{ chartform.as_table }}

You can use the date and search forms above 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.

{% endblock %}