{% extends "newbase.html" %} {% load static %} {% load rowerfilters %} {% block title %}{{ plan.name }}{% endblock %} {% block main %}

{{ plan.name }}

  • Created by: {{ plan.owner.first_name }} {{ plan.owner.last_name }}

    {% if plan.url %}

    Link: {{ plan.url }}

    {% endif %}

    Plan length: {{ plan.duration }} days

    {% if plan.description %}

    {{ plan.description }}

    {% endif %} {% if plan.goal %}

    Goal: {{ plan.goal }}

    {% endif %} {% if plan.target %}

    What the plan will achieve: {{ plan.target }}

    {% endif %}

    Weekly volume: {{ plan.hoursperweek }} hours per week over {{ plan.sessionsperweek }} sessions.

    {% if plan.price == 0 %}

    Price: Free

    {% else %}

    Price: {{ plan.price }}€

    {% endif %} {% if rower.eurocredits and plan.price > 0 %}

    Your discount: {{ plan.price|discount:rower }}€

    You pay: {{ plan.price|discounted:rower }}€

    {% endif %}
  • {% if form %}
  • When you submit this form, a training plan will be created based on {{ plan.name }}. The sessions will be copied to your training calendar.

    You can plan by when you want the plan to start or by when you want it to be done.

    If you have set a training target, you can also ask to plan by that target. Select the target from the targets list, and select "plan by target".

    {% if plan.price|discounted:rower == 0 %}
    {% else %} {% endif %} {{ form.as_table }} {% if byrscoreform %} {{ byrscoreform.as_table }} {% endif %}
    {% csrf_token %} {% if plan.price|discounted:rower == 0 %}

    {% else %}

    {% endif %}
  • {% else %}
  • Log in to install this plan to your training calendar.

  • {% endif %}
  • Plan Details

    {% for day in trainingdays %} {% if day.order|weekbegin %} {% endif %} {% if day.order|weekend %} {% endif %} {% endfor %}
    Week Day 1 Day 2 Day 3 Day 4 Day 5 Day 6 Day 7
    Week {{ day.week }} {% for workout in day.workouts %}

    {{ workout.workoutName }}

    {{ workout|steptostring|safe }} {% endfor %}
{% endblock %} {% block sidebar %} {% include 'menu_plan.html' %} {% endblock %}