summaryrefslogtreecommitdiff
path: root/talermerchantdemos/templates/landing-error.html.j2
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-04-21 21:07:18 +0200
committerFlorian Dold <florian@dold.me>2021-04-21 21:07:18 +0200
commit2b84f3bd5de3a500b63193924bea2f3dfd0c9afd (patch)
tree08d5a2bd354ab7849d731eabe7b132429b6d2225 /talermerchantdemos/templates/landing-error.html.j2
parent4356540b2eb12b2c307270566b0b4ce969e12c60 (diff)
downloadtaler-merchant-demos-2b84f3bd5de3a500b63193924bea2f3dfd0c9afd.tar.gz
taler-merchant-demos-2b84f3bd5de3a500b63193924bea2f3dfd0c9afd.tar.bz2
taler-merchant-demos-2b84f3bd5de3a500b63193924bea2f3dfd0c9afd.zip
common base template, new logo and lots of cleanup
Diffstat (limited to 'talermerchantdemos/templates/landing-error.html.j2')
-rw-r--r--talermerchantdemos/templates/landing-error.html.j213
1 files changed, 13 insertions, 0 deletions
diff --git a/talermerchantdemos/templates/landing-error.html.j2 b/talermerchantdemos/templates/landing-error.html.j2
new file mode 100644
index 0000000..7909656
--- /dev/null
+++ b/talermerchantdemos/templates/landing-error.html.j2
@@ -0,0 +1,13 @@
+{% extends "landing-base.html.j2" %}
+{% block main %}
+ <h1>{{ gettext("Error encountered") }}</h1>
+
+ <p>{{ message }}</p>
+
+ {% if stack %}
+ <p>{{gettext("Stack trace:")}}</p>
+ <pre>
+ {{ stack }}
+ </pre>
+ {% endif %}
+{% endblock main %}