{% 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 subscription.plan and customer.card_kind %}
Your free trial will end in {{ subscription.current_period_end|timeuntil }} after which you commence a {{ subscription.plan.name }} 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.
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 %}