%if allow_actions:

${_("Add a User to Your Course's Team")}

${_("New Team Member Information")}
  1. ${_("Please provide the email address of the course staff member you'd like to add")}
%endif
    % for user in staff: <% course_team_url = reverse( 'contentstore.views.course_team_handler', kwargs={'course_key_string': unicode(context_course.id), 'email': user.email} ) %>
  1. <% is_instuctor = CourseInstructorRole(context_course.id).has_user(user) %> % if is_instuctor: ${_("Current Role:")} ${_("Admin")} % if request.user.id == user.id: ${_("You!")} % endif % else: ${_("Current Role:")} ${_("Staff")} % if request.user.id == user.id: ${_("You!")} % endif % endif % if allow_actions: % endif
  2. % endfor
<% user_is_instuctor = CourseInstructorRole(context_course.id).has_user(request.user) %> % if user_is_instuctor and len(staff) == 1:

${_('Add Team Members to This Course')}

${_('Adding team members makes course authoring collaborative. Users must be signed up for Studio and have an active account. ')}

%endif