{% extends "newbase.html" %} {% load staticfiles %} {% load rowerfilters %} {% block title %}New Planned Session{% endblock %} {% block main %}

Create Team Session

{% if form.errors %}

Please correct the error{{ form.errors|pluralize }} below.

{% endif %}
  • {% csrf_token %}

    Select Team

    {{ teamform.as_table }}

    {% if plannedsessions %}

    Team Plan Sessions

    {% for ps in plannedsessions %} {% endfor %}
    After Before Name Value   Edit Clone Delete
    {{ ps.startdate|date:"Y-m-d" }} {{ ps.enddate|date:"Y-m-d" }} {% if ps.name != '' %} {{ ps.name }} {% else %} Unnamed Session {% endif %} {{ ps.sessionvalue }} {{ ps.sessionunit }} Edit Clone Delete

    {% endif %}
  • New Session

    {{ form.as_table }}
{% endblock %} {% block scripts %} {% endblock %} {% block sidebar %} {% include 'menu_plan.html' %} {% endblock %}