django-mellon/mellon/templates/mellon/authentication_failed.html

36 lines
1.1 KiB
HTML

{% extends "mellon/base.html" %}
{% load i18n %}
{% block mellon_extra_scripts %}
{% if error_redirect_after_timeout %}
<meta http-equiv="refresh" content="{{ error_redirect_after_timeout }};url={{ next_url }}"
{% endif %}
{% endblock %}
{% block mellon_content %}
<div id="mellon-authentication-failure" class="mellon-message">
<h2 class="mellon-message-header">{% trans "Authentication failed" %}</h2>
<p class="mellon-message-body">
{% blocktrans %}The authentication has failed.{% endblocktrans %}
{% for reason in reasons %}
<p class="mellon-reason">{% if loop.first %}{% trans "Reason" %}&nbsp;: {% endif %}{{ reason }}</p>
{% endfor %}
</p>
<p class="mellon-message-continue">
<a class="mellon-link" href="{{ next_url }}">{% trans "Continue" %}</a>
</p>
{% if debug %}
<p>{% trans "Information shown because DEBUG is True" %}</p>
<pre>
Issuer: {{ issuer }}
Message: {{ status_message }}
Status codes: {{ status_codes|join:", " }}
Relaystate: {{ relaystate }}
{% for key, value in debug_details.items %}
{{key}}: {{value|pprint}}
{% endfor %}
</pre>
{% endif %}
</div>
{% endblock %}