From 4d0b6adef4f53f8aa995985aa628bd0331cbc99a Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Tue, 31 Dec 2024 16:37:27 +0100 Subject: [PATCH] fix --- rowers/templates/paidplans.html | 4 ++++ rowers/templates/rower_form.html | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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