gitlab-org--gitlab-foss/app/views/groups/_new_group_member.html.haml

21 lines
684 B
Plaintext
Raw Normal View History

= form_for @users_group, url: group_users_groups_path(@group) do |f|
2012-12-25 22:52:49 +00:00
%fieldset
2013-08-06 17:12:20 +00:00
%legend
New member(s) for
%strong #{@group.name}
group
2012-12-25 22:52:49 +00:00
2013-08-06 17:12:20 +00:00
%p 1. Choose users you want in the group
.form-group
2012-12-25 22:52:49 +00:00
= f.label :user_ids, "People"
.col-sm-10= users_select_tag(:user_ids, multiple: true, class: 'input-large')
2012-12-25 22:52:49 +00:00
2013-08-06 17:12:20 +00:00
%p 2. Set access level for them
.form-group
= f.label :group_access, "Group Access"
.col-sm-10= select_tag :group_access, options_for_select(UsersGroup.group_access_roles, @users_group.group_access), class: "project-access-select chosen"
2012-12-25 22:52:49 +00:00
.form-actions
= f.submit 'Add users into group', class: "btn btn-create"
2012-12-25 22:52:49 +00:00