(% extends "admin/admin_partial_base.html" %) (% block persons_item_extra_classes %)active(% endblock %) (% block admin_page %) (% include "admin_person_details_partial.html" %)
(% if scim_effective_access.search.check(Attribute::Mail|as_ref) %)
(% if person.mails.len() == 0 %)

There are no email addresses associated with this person.

(% else %)
    (% for mail in person.mails %)
  1. (( mail.value ))
  2. (% endfor %)
(% endif %)
(% endif %) (% if scim_effective_access.search.check(Attribute::DirectMemberOf|as_ref) %)
(% if person.groups.len() == 0 %)

There are no groups this person is a direct member of.

(% else %)
    (% for group in person.groups %)
  1. (( group.value ))
  2. (% endfor %)
(% endif %)
(% endif %) (% endblock %)