mirror of
https://github.com/zulip/zulip.git
synced 2026-07-09 21:21:47 +08:00
This reverses the policy that was set, but incompletely enforced, by
commit 951514dd7d. The self-closing tag
syntax is clearer, more consistent, simpler to parse, compatible with
XML, preferred by Prettier, and (most importantly now) required by
FormatJS.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
25 lines
433 B
HTML
25 lines
433 B
HTML
{% extends "zerver/emails/email_base_messages.html" %}
|
|
|
|
{% block content %}
|
|
<b>Support URL</b>: <a href="{{ support_url }}">{{ support_url }}</a>
|
|
|
|
<br /><br />
|
|
|
|
<b>Website</b>: <a href="{{ website }}">{{ website }}</a>
|
|
|
|
<br /><br />
|
|
|
|
<b>Organization type</b>: {{ organization_type }}
|
|
|
|
<br /><br />
|
|
|
|
<b>Description</b>:
|
|
<br />
|
|
{{ description }}
|
|
|
|
<br /><br />
|
|
|
|
<b>Requested by</b>: {{ requested_by }} ({{ user_role }})
|
|
|
|
{% endblock %}
|