Skip to content

Commit b16a659

Browse files
committed
I committed the middleware that uses this but forgot to commit
the template. - Legacy-Id: 268
1 parent e087724 commit b16a659

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

ietf/templates/email_failed.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{% extends "base.html" %}
2+
3+
{% block title %}E-Mail Sending Failed{% endblock %}
4+
5+
{% block content %}
6+
<h1>E-Mail Sending Failed</h1>
7+
8+
<p>Sorry, the site needed to send an E-Mail message to complete this
9+
action, and that attempt failed. Please reload this page later
10+
to try again, or, if this condition persists, please send an
11+
E-Mail to &lt;<a href="mailto:webmaster@ietf.org">webmaster@ietf.org</a>&gt;
12+
13+
{% if debug %}
14+
<ul>
15+
<li>Exception: {{ exception|escape }}
16+
<li>Detail: {{ args|escape }}
17+
<li>Traceback:
18+
<pre>
19+
{{ traceback|escape }}
20+
</pre>
21+
</ul>
22+
{% endif %}
23+
24+
{% include "debug.html" %}
25+
{% endblock %}

0 commit comments

Comments
 (0)