{% extends "base.html" %} {% load i18n %} {% block title %}{% if error %}{% if inactive %}{% trans "Activation Pending" %}{% else %}{% trans "Error" %}{% endif %}{% endif %}{% endblock %} {% block extrahead %} {% endblock %} {% block content %}
{% if error %}{% if inactive %}

{% trans "Activation Pending" %}

{% else %}

{% trans "Error" %}

{% endif %}{% endif %}

{% if missing_attributes %}

{% trans "One or more required shibboleth attributes were not released towards this service" %}

{% endif %}

{% autoescape off %}{{error}}{% endautoescape %}

{% if missing_attributes %}

{% trans "Required shibboleth attributes" %}:

  • HTTP_EPPN
  • HTTP_SHIB_HOMEORGANIZATION
  • HTTP_SHIB_INETORGPERSON_MAIL
  • An appropriate HTTP_SHIB_EP_ENTITLEMENT
{% trans "Optional" %}:
  • HTTP_SHIB_INETORGPERSON_GIVENNAME
  • HTTP_SHIB_PERSON_SURNAME

{% endif %}
{% endblock %}