summaryrefslogtreecommitdiff
path: root/talermerchantdemos/survey/templates/error.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'talermerchantdemos/survey/templates/error.html.j2')
-rw-r--r--talermerchantdemos/survey/templates/error.html.j224
1 files changed, 0 insertions, 24 deletions
diff --git a/talermerchantdemos/survey/templates/error.html.j2 b/talermerchantdemos/survey/templates/error.html.j2
deleted file mode 100644
index 844da08..0000000
--- a/talermerchantdemos/survey/templates/error.html.j2
+++ /dev/null
@@ -1,24 +0,0 @@
-{% extends "templates/base.html.j2" %}
-{% block main %}
- <h1>{{ gettext("Error encountered") }}</h1>
-
- <p>{{ message }}</p>
-
- {% if status_code %}
- <p>
- {{ gettext ("The backend returned status code {code}.").format(code=status_code) }}
- </p>
- {% endif %}
-
- {% if json %}
- <p>{{gettext("Backend response:")}}</p>
- <pre>{{ json }}</pre>
- {% endif %}
-
- {% if stack %}
- <p>{{gettext("Stack trace:")}}</p>
- <pre>
- {{ stack }}
- </pre>
- {% endif %}
-{% endblock main %}