summaryrefslogtreecommitdiff
path: root/talermerchantdemos/templates/survey-error.html.j2
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2024-02-07 09:21:22 -0300
committerSebastian <sebasjm@gmail.com>2024-02-07 09:21:22 -0300
commit0c629825b47f3b5e90b85f534b03bbb9d3e9c383 (patch)
tree57c6c46094c80087082224636310054bfea56993 /talermerchantdemos/templates/survey-error.html.j2
parent8f7e0cbd33c423970806331e6a4d6b553a55db5b (diff)
downloadtaler-merchant-demos-0c629825b47f3b5e90b85f534b03bbb9d3e9c383.tar.gz
taler-merchant-demos-0c629825b47f3b5e90b85f534b03bbb9d3e9c383.tar.bz2
taler-merchant-demos-0c629825b47f3b5e90b85f534b03bbb9d3e9c383.zip
fix #8326
Diffstat (limited to 'talermerchantdemos/templates/survey-error.html.j2')
-rw-r--r--talermerchantdemos/templates/survey-error.html.j224
1 files changed, 0 insertions, 24 deletions
diff --git a/talermerchantdemos/templates/survey-error.html.j2 b/talermerchantdemos/templates/survey-error.html.j2
deleted file mode 100644
index b2f84f9..0000000
--- a/talermerchantdemos/templates/survey-error.html.j2
+++ /dev/null
@@ -1,24 +0,0 @@
-{% extends "survey-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 %}