{% extends "newbase.html" %} {% load static %} {% load rowerfilters %} {% block title %}Rowsandall Training Plans{% endblock %} {% block main %}

Training Plans

  • On this page, you find trusted training plans that work. If you are looking for a plan, this page is for you. This ever growing list of plans contains a plan for everyone, whether you are a beginning rower or experienced, irrespective of your current fitness level. Click on a plan to read more and see the sessions. If you're on a Self-Coach plan or higher, you can get the plan including even more detailed workout instructions copied straight to your training calendar on this site, with the simple click of a button.

    {% if rower.eurocredits %}

    Your have discount vouchers for an amount of {{ rower.eurocredits }}€. You will get discount for up to this amount on any paid plan.

    {% endif %}
  • {% for plan in plans %}
  • {{ plan.name }}

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

    Plan length: {{ plan.duration }} days

    {{ plan.description }}

    {% if plan.private %}

    Private

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

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

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

    Goal: {{ plan.goal }}

    {% endif %}

    {{ 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 %}
  • {% endfor %} {% if user.is_authenticated and user.is_staff %}
  • Add a New Training Plan
  • {% endif %}
{% endblock %} {% block sidebar %} {% include 'menu_plan.html' %} {% endblock %}