mirror of https://github.com/zulip/zulip.git
25 lines
415 B
HTML
25 lines
415 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 %}
|