summaryrefslogtreecommitdiff
path: root/talerdonations/donations/templates/error.html
blob: 80becdfb6225bf2247246e595eca84cbec8f1719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "static/web-common/templates/base.html" %}

{% block page_content %}
  <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 %}