{% extends "zerver/portico.html" %} {% set entrypoint = "billing" %} {% block title %} {{ _("Billing") }} | Zulip {% endblock %} {% 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 {{ seat_count }} 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 %}

Billing email: {{ stripe_email }}

Current payment method: {{ payment_method }}

{% if charge_automatically %} {% endif %}
Redirecting to Stripe checkout page for updating Card details.
{% if not automanage_licenses and not downgrade_at_end_of_cycle %}

Licenses

Number of licenses in the current billing period

You can only increase the number of licenses.




Licenses in next renewal

You can increase or decrease the number of licenses.


Plan updated. The page will now reload.
{% endif %}

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.
{% include "corporate/sponsorship.html" %}

{% elif admin_access and not has_active_plan %}
{% if sponsorship_pending %}

Your organization has requested sponsored or discounted hosting.


Please contact Zulip support if you have any questions or concerns. {% elif is_sponsored %}

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

{% else %}

Your organization is on the Zulip Free plan.

{% endif %}
{% if not sponsorship_pending %} {# In the other case, we're displaying a different message about contacting support. #} {% endif %} {% else %}

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

{% endif %}
{% endblock %}