From b16a65966e1cc560580c8e91abedcc9a357e80ff Mon Sep 17 00:00:00 2001
From: Bill Fenner <fenner@fenron.net>
Date: Fri, 8 Jun 2007 18:25:13 +0000
Subject: [PATCH] I committed the middleware that uses this but forgot to
 commit the template.  - Legacy-Id: 268

---
 ietf/templates/email_failed.html | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 ietf/templates/email_failed.html

diff --git a/ietf/templates/email_failed.html b/ietf/templates/email_failed.html
new file mode 100644
index 000000000..b48f7cf28
--- /dev/null
+++ b/ietf/templates/email_failed.html
@@ -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 &lt;<a href="mailto:webmaster@ietf.org">webmaster@ietf.org</a>&gt;
+
+{% if debug %}
+<ul>
+<li>Exception: {{ exception|escape }}
+<li>Detail: {{ args|escape }}
+<li>Traceback:
+<pre>
+{{ traceback|escape }}
+</pre>
+</ul>
+{% endif %}
+
+{% include "debug.html" %}
+{% endblock %}