Current Plan
{% if current_user.lifetime %}
You have lifetime access to the Premium plan.
{% elif current_user.lifetime_or_active_subscription() %}
{% if paddle_sub %}
{% if paddle_sub.cancelled %}(Cancelled){% endif %}
{{ paddle_sub.plan_name() }} plan subscribed via Paddle.
Manage Subscription ➡
{% endif %}
{% if manual_sub and manual_sub.is_active() %}
Manual plan which expires {{ manual_sub.end_at | dt }}
({{ manual_sub.end_at.format("YYYY-MM-DD") }}).
{% if manual_sub.is_giveaway %}
To gain additional features and support SimpleLogin you can upgrade to a Premium plan.
Upgrade
{% endif %}
{% endif %}
{% if apple_sub and apple_sub.is_valid() %}
Premium plan subscribed via Apple which expires {{ apple_sub.expires_date | dt }}
({{ apple_sub.expires_date.format("YYYY-MM-DD") }}).
If you want to subscribe via the Web instead, please make sure to cancel your subscription
on Apple first.
Upgrade
{% endif %}
{% if coinbase_sub and coinbase_sub.is_active() %}
Yearly plan subscribed with cryptocurrency which expires on
{{ coinbase_sub.end_at.format("YYYY-MM-DD") }}.
Extend Subscription
{% endif %}
{% if partner_sub %}
Premium subscription managed by {{ partner_name }}.
{% endif %}
{% elif current_user.in_trial() %}
Your Premium trial expires {{ current_user.trial_end | dt }}.
{% else %}
You are on the Free plan.
{% endif %}