{% extends "base.html" %} {% load staticfiles %} {% block headermsg %}

Error

{% endblock headermsg %} {% block content %}

{% if type == "wrong_pin" %} Wrong PIN {% elif type == "non_supported_method" %} Non supported wire method {% elif type == "internal_error" %} Internal error {% elif type == "exchange_unknown" %} Exchange unknown {% elif type == "not_logged" %} User not logged {% elif type == "custom" %} {% if not custom_title %} Error {% else %} {{ custom_title }} {% endif %} {% endif %}

{% if type == "wrong_pin" %} Return to your profile page {% elif type == "internal_error" %} Internal error: {{ hint }} {% elif type == "non_supported_method" %} This bank supports TEST wire method only {% elif type == "exchange_unknown" %} Given exchange does not exist (try 'http' instead of 'https'?) {% elif type == "not_logged" %} Operation not possible, log in at home page {% elif type == "custom" %} {% if not custom_message %} error details not given {% else %} {{ custom_message }} {% endif %} {% endif %}

{% endblock content %}