{% extends 'base.html' %} {% block content %}

{{ t('ldap.title') }}

{{ t('ldap.description') }}

{{ t('ldap.back_to_users') }}
{{ t('ldap.show_all') }}

{{ t('ldap.search_help') }}

{% if loaded %}

{{ t('ldap.users_found', count=results|length) }}

{% for item in results %} {% endfor %}
{{ t('ldap.username') }} {{ t('ldap.display_name') }} {{ t('ldap.email') }} {{ t('ldap.status') }} {{ t('ldap.dn') }}
{{ item.username }} {{ item.display_name }} {{ item.email }} {% if item.existing %}{{ t('ldap.exists') }}{% else %}{{ t('ldap.can_save') }}{% endif %} {{ item.dn }}
{% endif %} {% endblock %}