{% 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 automanage_licenses %} Licenses are automatically managed by Zulip; when you add or deactivate a user, the number of licenses will be immediately updated to reflect your new usage. {% else %} Licenses are manually managed. You will not be able to add new users to your organization once you are using all of your licenses. {% endif %}

{% 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 }}. {% elif switch_to_annual_at_end_of_cycle %} Your plan will be switched from monthly to annual billing 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 %}
{% if sponsorship_pending %}

Your organization has requested sponsored or discounted hosting.

{% elif is_sponsored %}

💚 Your organization is fully sponsored and is on the Zulip Standard plan.

{% else %}

Your organization is on the Zulip Free plan.

{% endif %}
{% else %}

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

{% endif %}
{% endblock %}