summaryrefslogtreecommitdiff
path: root/talermerchantdemos/survey/templates/error.html
blob: 0d4bd02c93e1c3b2cc10e4d38a106b701cb0c272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "templates/base.html" %}
{% block main %}
  <h1>An Error Occurred</h1>

  <p>{{ message }}</p>

  {% if status_code %}
  <p>The backend returned status code {{ status_code }}.</p>
  {% endif %}

  {% if json %}
  <p>Backend Response:</p>
  <pre>{{ json }}</pre>
  {% endif %}

  {% if stack %}
  <p>Stack trace:</p>
  <pre>
    {{ stack }}
  </pre>
  {% endif %}
{% endblock main %}