%if allow_actions:

${_("Grant Access to This Library")}

${_("New Team Member Information")}
  1. ${_("Provide the email address of the user you want to add")}
%endif
    % for user in all_users: <% is_instructor = user in instructors is_staff = user in staff role_id = 'admin' if is_instructor else ('staff' if is_staff else 'user') role_desc = _("Admin") if is_instructor else (_("Staff") if is_staff else _("User")) %>
  1. ${_("Current Role:")} ${role_desc} % if request.user.id == user.id: ${_("You!")} % endif % if allow_actions: % elif request.user.id == user.id: % endif
  2. % endfor
% if allow_actions and len(all_users) == 1:

${_('Add More Users to This Library')}

${_('Grant other members of your course team access to this library. New library users must have an active {studio_name} account.').format(studio_name=settings.STUDIO_SHORT_NAME)}

%endif