zulip/templates/zerver/emails/internal_billing_notice.html

21 lines
696 B
HTML

{% extends "zerver/emails/email_base_default.html" %}
{% block content %}
<p>Internal billing notice for {{ billing_entity }}.</p>
{% if notice_reason == "fixed_price_plan_ends_soon" %}
<p>Reminder to re-evaluate the pricing and configure a new fixed-price plan accordingly.</p>
{% elif notice_reason == "invoice_overdue" %}
<p>Recent invoice is overdue for payment.</p>
<b>Last data upload</b>: {{ last_audit_log_update }}
{% elif notice_reason == "locally_deleted_realm_on_paid_plan" %}
<p>Investigate why remote realm is marked as locally deleted when it's on a paid plan.</p>
{% endif %}
<br /><br />
<b>Support URL</b>: <a href="{{ support_url }}">{{ support_url }}</a>
{% endblock %}