{% extends "newbase.html" %} {% load staticfiles %} {% load rowerfilters %} {% block title %}Plan entire microcycle{% endblock %} {% block main %} {% if team %}

Create Group Sessions for {{ team.name }}

{% else %}

Create Sessions for {{ rower.user.first_name }} {{ rower.user.last_name }}

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

  • Back by {{ timeperiod|timedeltadays }} days

    Forward by {{ timeperiod|timedeltadays }} days

  • On this page, you can create and edit sessions for an entire time period. You see a list of the current sessions planned for the selected time period. Each row in the table is a session. You can remove a session by clicking "remove" at the end of a row. You can edit the date in the forms. If you need to add a new session, click the "Add More" button to add a new session. Use the "Submit" button to commit any changes you made.

    {% csrf_token %} {{ ps_formset.management_form }} {% for field in ps_formset.0.visible_fields %} {% endfor %} {% for form in ps_formset %} {% endfor %} {% endfor %}
     {{ field.label_tag }}
    {{ forloop.counter }} {% if form.instance.pk %}{{ form.DELETE }}{% endif %} {{ form.id }} {% for field in form.hidden_fields %} {{ field }} {% endfor %} {% for field in form.visible_fields %} {{ field }}
    {% if team %} Add More {% else %} Add More {% endif %} or Clone multiple sessions
{% endblock %} {% block sidebar %} {% include 'menu_plan.html' %} {% endblock %}