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

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

{{ timeperiod }}

  • Plan

    Click on session name to view

    {% 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
  • New Session

    {% if form.errors %}

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

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