only show upgrade button to "free" lifetime user

This commit is contained in:
Son NK 2020-05-27 00:20:09 +02:00
parent 2f0a5aa429
commit eb6bfdd56f

View file

@ -192,9 +192,11 @@
{% endif %}
{% elif current_user.lifetime %}
You have the lifetime licence.
<br>
To support SimpleLogin it's possible to change to a paid plan. <br>
<a href="{{ url_for('dashboard.pricing') }}" class="btn btn-sm btn-outline-primary">Upgrade</a>
{% if not current_user.paid_lifetime %}
<br>
To support SimpleLogin it's possible to change to a paid plan. <br>
<a href="{{ url_for('dashboard.pricing') }}" class="btn btn-sm btn-outline-primary">Upgrade</a>
{% endif %}
{% elif current_user.in_trial() %}
You are in the trial period. The trial ends {{ current_user.trial_end | dt }}.
{% else %}