{% extends 'base.html' %} {% load i18n %} {% block extrahead %} {% endblock extrahead %} {% block content %}

{% trans "Authenticate" %}

{% trans "General" %}

{% blocktrans %} Below you can see the list of URLs, divided into 2 categories: (1) Fail, (2) success. Fail URLs obviously fail (401 Unauthorized). The other two should work (you should get a password-less login into the Django web site). {% endblocktrans %}

{% for title, remote_ska_login_url, signed_remote_ska_login_url in remote_ska_login_urls %} {% endfor %}
{% trans "Fail" %} {% trans "Success" %}

{% trans "By provider" %}

{% blocktrans %} Below you can see the list of provider specific URLs, divided into 2 categories: (1) Fail, (2) success. Fail URLs obviously fail (401 Unauthorized). The other two should work (you should get a password-less login into the Django web site). {% endblocktrans %}

{% for title, remote_ska_login_url, signed_remote_ska_login_url in remote_ska_login_urls_by_provider %} {% endfor %}
{% trans "Fail" %} {% trans "Success" %}

{% blocktrans %} Below you can see the list of provider specific signed valid URLs that still fail because they do not pass validation rules defined in the ``examples.simple.foo.ska_callbacks.Client1Validate#admins`` callback. Fail URLs obviously fail (403 Permission Denied). {% endblocktrans %}

{% for title, description, signed_remote_ska_login_url in fail_only_remote_ska_login_urls_by_provider %} {% endfor %}
{% trans "Fail" %}
({{ description }})
{% endblock content %}