{% extends 'base.html.twig' %} {% block title %}Ldap Import{% endblock %} {% block body %}
| {{ '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 }}