2012-09-07 08:50:35 +02:00
|
|
|
%h3.page_title
|
|
|
|
= "New Team member(s)"
|
2012-02-08 00:00:49 +01:00
|
|
|
%hr
|
2013-01-22 18:20:39 +01:00
|
|
|
= form_for @user_project_relation, as: :team_member, url: project_team_members_path(@project) do |f|
|
|
|
|
-if @user_project_relation.errors.any?
|
2013-01-30 15:53:18 +01:00
|
|
|
.alert.alert-error
|
2012-02-08 00:00:49 +01:00
|
|
|
%ul
|
2013-01-22 18:20:39 +01:00
|
|
|
- @user_project_relation.errors.full_messages.each do |msg|
|
2012-02-08 00:00:49 +01:00
|
|
|
%li= msg
|
|
|
|
|
2012-09-07 08:50:35 +02:00
|
|
|
%h6 1. Choose people you want in the team
|
2012-02-08 00:00:49 +01:00
|
|
|
.clearfix
|
2012-09-10 08:09:55 +02:00
|
|
|
= f.label :user_ids, "People"
|
2013-03-13 20:37:50 +01:00
|
|
|
.input
|
2013-03-13 21:32:04 +01:00
|
|
|
= users_select_tag(:user_ids, multiple: true)
|
2012-02-15 22:51:04 +01:00
|
|
|
|
2012-09-07 08:50:35 +02:00
|
|
|
%h6 2. Set access level for them
|
2012-02-08 00:00:49 +01:00
|
|
|
.clearfix
|
|
|
|
= f.label :project_access, "Project Access"
|
2013-01-22 18:20:39 +01:00
|
|
|
.input= select_tag :project_access, options_for_select(Project.access_options, @user_project_relation.project_access), class: "project-access-select chosen"
|
2012-02-15 22:51:04 +01:00
|
|
|
|
2012-02-08 00:00:49 +01:00
|
|
|
.actions
|
2013-01-30 16:13:05 +01:00
|
|
|
= f.submit 'Add users', class: "btn btn-create"
|
2013-01-29 21:18:19 +01:00
|
|
|
= link_to "Cancel", project_team_index_path(@project), class: "btn btn-cancel"
|