{% extends "admin/base_site_mako.html" %} {% if not is_popup %} {% block block_breadcrumbs %} {% endblock %} {% endif %} {% block block_extrahead %} {% endblock %} {% block block_content %}

Unregistered users

{% if unexisting_ldap_users %}

The following users are in the LDAP YABI group, but NOT in the DB:

{% for ldapuser in unexisting_ldap_users %} {% endfor %}
Register Full name User ID User LDAP DN
{{ldapuser.full_name}} {{ldapuser.uid}} {{ldapuser.dn}}
{% else %}

All users in the LDAP YABI group are registered in the DB.

{% endif %}

Registered users

The following users are in the LDAP YABI group AND in the DB:

{% for ldapuser in existing_ldap_users %} {% endfor %}
Full name User ID User LDAP DN
{{ldapuser.full_name}} {{ldapuser.uid}} {{ldapuser.dn}}
{% endblock %}