{% set pagetitle = 'Incorrect Attributes' | trans %} {% extends "base.twig" %} {% block content %}

{{ pagetitle }}

{% trans 'One or more of the attributes supplied by your identity provider did not contain the expected number of values.' %}

{% trans 'The problematic attribute(s) are:' %}

{% for attr,issues in cardinalityErrorAttributes %} {% set got = issues[0] %} {% set want = issues[1] %}
{{ attr }}
{% trans %}got {{ got }} values, want {{ want }}{% endtrans %}
{% endfor %}
{% if LogoutURL is defined %}

{% trans 'Logout' %}

{% endif %} {% endblock %}