{% extends "zerver/portico.html" %} {% set entrypoint = "billing" %} {% block customhead %} {% endblock %} {% block content %}
{% include 'zerver/billing_nav.html' %}

{{ _("Billing") }}

{% if admin_access and has_active_plan %}
{% if free_trial %}

Your current plan is {{ plan_name }} Free Trial.

{% else %}

Your current plan is {{ plan_name }}.

{% endif %}

You are using {{ licenses_used }} of {{ licenses }} licenses.

{% if renewal_amount %} {% if free_trial %} Your plan will be upgraded to {{ plan_name }} on {{ renewal_date }} for ${{ renewal_amount }}. {% elif downgrade_at_end_of_cycle %} Your plan will be downgraded to Zulip Limited on {{ renewal_date }}. {% else %} Your plan will renew on {{ renewal_date }} for ${{ renewal_amount }}. {% endif %} {% else %} Your plan ends on {{ renewal_date }}, and does not renew. {% endif %}

Current payment method: {{ payment_method }}

{% if charge_automatically %} {% endif %}
Card updated. The page will now reload.

Downgrade

{% if free_trial %}

End Free Trial and downgrade plan to Zulip Limited.

{% else %} {% if downgrade_at_end_of_cycle %}

You plan is scheduled for downgrade on {{ renewal_date }}.

{% else %}

Downgrade to Zulip Limited at the end of current billing period.

{% endif %} {% endif %}
Plan updated. The page will now reload.
{% elif admin_access and not has_active_plan %}

Your organization is on the Zulip Free plan.

{% else %}

You must be an organization administrator or a billing administrator to view this page.

{% endif %}
{% endblock %}