{% extends 'default.html' %}
{% set active_page = "dashboard" %}
{% block title %}
Pricing
{% endblock %}
{% block head %}
{% endblock %}
{% block announcement %}
{# TODO: to remove#}
{#
#}
{# Our payment provider Paddle is experiencing#}
{# server issue #}
{# that can make our checkout page unusable. #}
{# Please retry later and sorry for this issue!#}
{#
You currently have a subscription until {{ manual_sub.end_at.format("YYYY-MM-DD") }}
({{ (manual_sub.end_at - now).days }} days left).
Please note that the time left will not be taken into account in a new subscription.
{% set sub = current_user.get_subscription() %}
{% if sub and sub.cancelled %}
You have an active subscription until {{ sub.next_bill_date.strftime("%Y-%m-%d") }}.
Please note that if you re-subscribe now, this will be a completely
new subscription and
your payment method will be charged immediately.
{% endif %}
{% if coinbase_sub %}
You currently have a Coinbase subscription until {{ coinbase_sub.end_at.format("YYYY-MM-DD") }}
({{ (coinbase_sub.end_at - now).days }} days left).
Please note that the time left will not be taken into account in a new Paddle subscription.
{% endif %}
Paddle supports bank cards
(Mastercard, Visa, American Express, etc) and PayPal.