I committed the middleware that uses this but forgot to commit
the template. - Legacy-Id: 268
This commit is contained in:
parent
e08772430a
commit
b16a65966e
25
ietf/templates/email_failed.html
Normal file
25
ietf/templates/email_failed.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}E-Mail Sending Failed{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<h1>E-Mail Sending Failed</h1>
|
||||
|
||||
<p>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>>
|
||||
|
||||
{% if debug %}
|
||||
<ul>
|
||||
<li>Exception: {{ exception|escape }}
|
||||
<li>Detail: {{ args|escape }}
|
||||
<li>Traceback:
|
||||
<pre>
|
||||
{{ traceback|escape }}
|
||||
</pre>
|
||||
</ul>
|
||||
{% endif %}
|
||||
|
||||
{% include "debug.html" %}
|
||||
{% endblock %}
|
Loading…
Reference in a new issue