datatracker/ietf/templates/email_failed.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

29 lines
978 B
HTML

{% 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 %}