mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 17:08:30 +01: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>
|
<h1 class="h3 mb-5"> Billing </h1>
|
||||||
|
|
||||||
<p>
|
<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. 🙌
|
SimpleLogin. 🙌
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
{% if sub.cancelled %}
|
{% if sub.cancelled %}
|
||||||
<p>
|
<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>
|
</p>
|
||||||
|
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|
Loading…
Reference in a new issue