{% extends 'base.html.twig' %} {% block title %}Ldap Import{% endblock %} {% block body %}
{% set i = 0 %} {% for entry in ldapResult %} {% set i = i+1 %} {% endfor %}
{{ 'displayName'|trans }} {{ 'userPrincipalName'|trans }} {{ 'mail'|trans }} {{ 'action'|trans }}
{{ entry.displayName }} {{ entry.userPrincipalName }} {{ entry.mail }} {% if entry.mail != '' and entry.userPrincipalName != '' and entry.alreadyexists == false %} {{ form_start(forms[i]) }} {{ form_widget(forms[i]) }} {{ form_end(forms[i]) }} {% elseif entry.alreadyexists == true %} {{ 'imported'|trans }} {% else %} {{ 'incomplete'|trans }} * {% endif %}

* {{ "Can\'t Import User without UserPrincialName and EMail."|trans }}

back to list

{% endblock %}