forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemail_failed.html
More file actions
29 lines (29 loc) · 978 Bytes
/
email_failed.html
File metadata and controls
29 lines (29 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}E-mail sending failed{% endblock %}
{% block content %}
{% origin %}
<h1>E-mail sending failed</h1>
<p class="alert alert-warning my-3">
Sorry, the site needed to send an E-Mail message to complete this
action, and that attempt failed. Please reload this page later
to try again, or, if this condition persists, please send an
e-mail to
<a href="mailto:webmaster@ietf.org">webmaster@ietf.org</a>.
</p>
{% if debug %}
<hr>
<h3>Debug information, please forward when reporting this error:</h3>
<ul>
<li>Exception: {{ exception|escape }}</li>
<li>Detail: {{ args|escape }}</li>
<li>
Traceback:
<pre>
{{ traceback|escape }}
</pre>
</li>
</ul>
{% endif %}
{% endblock %}