mirror of
https://github.com/zulip/zulip.git
synced 2025-11-13 18:36:36 +00:00
The migration to css-inline "fixed" the fact that styles from this file previously were never applied to the internals of missed-message emails. Rewrite much of the CSS to more correctly scope to apply to the appropriate elements, and document with comments the purpose of most blocks. Co-authored-by: Tim Abbott <tabbott@zulip.com>
22 lines
378 B
HTML
22 lines
378 B
HTML
{% extends "zerver/emails/email_base_messages.html" %}
|
|
|
|
{% block content %}
|
|
<b>Support URL</b>: <a class="support_request_link" href="{{ support_url }}">{{ support_url }}</a>
|
|
|
|
<br /><br />
|
|
|
|
<b>Subject</b>: {{ request_subject }}
|
|
|
|
<br /><br />
|
|
|
|
<b>Message</b>:
|
|
<br />
|
|
{{ request_message }}
|
|
|
|
<br /><br />
|
|
|
|
<b>Requested by</b>: {{ requested_by }} ({{ user_role }})
|
|
|
|
{% endblock %}
|
|
|