30 lines
990 B
HTML
30 lines
990 B
HTML
{# bs5ok #}
|
|
{% 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 %} |