{% extends "admin/change_form.html" %} {% load admin_modify admin_urls i18n static %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block content %} {% if not results %}

Import Users

Type a list of emails of ActiveDirectory users to add them to HOPE

{% csrf_token %} {{ form.as_p }}
{% else %}

Import Users

{% if results.created %}

The following user have been added to HOPE

{{ results.created|join:", " }}
{% endif %} {% if results.updated %}

The following users have been found in HOPE and have been updated (role added)

{{ results.updated|join:", " }}
{% endif %} {% if results.missing %}

The following users have not been found in the ActiveDirectory

{{ results.missing|join:", " }}
{% endif %} {% endif %} {% endblock content %} {% block submit_buttons_bottom %}{% endblock %}