zulip/templates/zerver/emails/sponsorship_request.html
Anders Kaseorg dd3fa4ac52 templates: Mark all void tags as self-closing.
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>
2021-04-21 09:49:34 -07:00

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 %}