mirror of
https://github.com/simple-login/app.git
synced 2024-11-11 01:42:54 +08:00
display next_bill_date on billing page for canceled subscription
This commit is contained in:
parent
1ebe6558a0
commit
f8ad733b91
1 changed files with 4 additions and 2 deletions
|
@ -12,13 +12,15 @@
|
|||
<h1 class="h3 mb-5"> Billing </h1>
|
||||
|
||||
<p>
|
||||
You are on the <b>{{ current_user.get_subscription().plan_name() }}</b> plan. Thank you very much for supporting
|
||||
You are on the <b>{{ sub.plan_name() }}</b> plan. Thank you very much for supporting
|
||||
SimpleLogin. 🙌
|
||||
</p>
|
||||
|
||||
{% if sub.cancelled %}
|
||||
<p>
|
||||
Sad to see you go 😢. Your subscription ends {{ current_user.get_subscription().next_bill_date | dt }}.
|
||||
Sad to see you go 😢. Your subscription ends on
|
||||
{{ sub.next_bill_date.year }}-{{ sub.next_bill_date.month}}-{{ sub.next_bill_date.day }}
|
||||
({{ sub.next_bill_date | dt }}).
|
||||
</p>
|
||||
|
||||
{% else %}
|
||||
|
|
Loading…
Reference in a new issue