From a6569d47dd50154e487b7f1a5d641f884f570485 Mon Sep 17 00:00:00 2001 From: Son Date: Sun, 26 Dec 2021 22:04:45 +0100 Subject: [PATCH] do not put price in plan_name to take into account discount --- app/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models.py b/app/models.py index 2e21788c..a86e5611 100644 --- a/app/models.py +++ b/app/models.py @@ -1708,9 +1708,9 @@ class Subscription(Base, ModelMixin): def plan_name(self): if self.plan == PlanEnum.monthly: - return "Monthly ($4/month)" + return "Monthly" else: - return "Yearly ($30/year)" + return "Yearly" def __repr__(self): return f""