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

Create Team Session

{{ dateform.as_table }}

{% if form.errors %}

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

{% endif %}
  • {% csrf_token %}

    New Team Session

    {{ teamform.as_table }}
    {{ form.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 %}
{% endblock %} {% block scripts %} {% endblock %} {% block sidebar %} {% include 'menu_plan.html' %} {% endblock %}