mirror of https://github.com/zulip/zulip.git
16 lines
436 B
HTML
16 lines
436 B
HTML
{% extends "zerver/emails/email_base_default.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% 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" %}
|
|
<b>Last data upload</b>: {{ last_audit_log_update }}
|
|
{% endif %}
|
|
|
|
<br /><br />
|
|
|
|
<b>Support URL</b>: <a href="{{ support_url }}">{{ support_url }}</a>
|
|
|
|
{% endblock %}
|