taler-merchant-demos

Python-based Frontends for the Demonstration Web site
Log | Files | Refs | Submodules | README | LICENSE

landing-error.html.j2 (246B)


      1 {% extends "landing-base.html.j2" %}
      2 {% block main %}
      3   <h1>{{ gettext("Error encountered") }}</h1>
      4 
      5   <p>{{ message }}</p>
      6 
      7   {% if stack %}
      8   <p>{{gettext("Stack trace:")}}</p>
      9   <pre>
     10     {{ stack }}
     11   </pre>
     12   {% endif %}
     13 {% endblock main %}