{% if subscription %} {% if subscription.status == subscription.STATUS_ACTIVE and not subscription.current_period_end %}
Your subscription is {{ subscription.status }}.
{% else %} {% if subscription.status == subscription.STATUS_TRIALING %} {% if customer.plan and customer.card_kind %}
Your free trial will end in {{ subscription.current_period_end|timeuntil }} after which you commence a {{ subscription.plan_display }} plan.
{% else %}
Your free trial will end in {{ subscription.current_period_end|timeuntil }} after which you will need to get a subscription to continue using the site.
{% endif %} {% else %} {% if subscription.status == subscription.STATUS_CANCELLED %}
Your subscription has been canceled.
{% elif customer.current_subscription.is_status_temporarily_current %}
Your subscription has been canceled on {{ subscription.canceled_at }} {% if subscription.is_period_current %} You can continue to use the site for another {{ subscription.current_period_end|timeuntil }}. {% endif %}
{% else %}
Your subscription is {{ subscription.status }}.
{% endif %} {% endif %} {% endif %} {% endif %}