diff --git a/rowers/templates/paidplans.html b/rowers/templates/paidplans.html index ac5b848b..80a3ce13 100644 --- a/rowers/templates/paidplans.html +++ b/rowers/templates/paidplans.html @@ -138,6 +138,7 @@ {% endif %} + {% if rower and rower.rowerplan == 'basic' %} Available trial (no strings attached) @@ -159,10 +160,13 @@ {% endif %} + {% endif %} + {% if rower and rower.rowerplan == 'basic' %} Available upgrades + {% endif %}   diff --git a/rowers/templates/rower_form.html b/rowers/templates/rower_form.html index 1dd250ba..569c3559 100644 --- a/rowers/templates/rower_form.html +++ b/rowers/templates/rower_form.html @@ -62,7 +62,7 @@ {% endif %} {% csrf_token %} - {% if rower.rowerplan != 'coach' and rower.user == user %} + {% if rower.rowerplan != 'pro' and rower.user == user %}

Upgrade