Admin area: add multiple users to project
This commit is contained in:
parent
f6f72d4b22
commit
fa8c0c7813
5 changed files with 69 additions and 1 deletions
|
@ -57,3 +57,4 @@
|
|||
%td= link_to 'Destroy', admin_team_member_path(tm), :confirm => 'Are you sure?', :method => :delete
|
||||
|
||||
= link_to 'New Team Member', new_admin_team_member_path(:team_member => {:project_id => @admin_project.id}), :class => "grey-button"
|
||||
.right= link_to 'Bulk Import', team_admin_project_path(@admin_project), :class => "grey-button"
|
||||
|
|
30
app/views/admin/projects/team.html.haml
Normal file
30
app/views/admin/projects/team.html.haml
Normal file
|
@ -0,0 +1,30 @@
|
|||
= form_tag team_update_admin_project_path(@admin_project), :class => "bulk_import", :method => :put do
|
||||
.span-6
|
||||
%b Project Access:
|
||||
.span-6
|
||||
= select_tag :project_access, options_for_select(Project.access_options), :class => "project-access-select"
|
||||
|
||||
.span-6
|
||||
%b Repository Access:
|
||||
.span-6
|
||||
= select_tag :repo_access, options_for_select(Repository.access_options), :class => "repo-access-select"
|
||||
|
||||
%br
|
||||
= select_tag :user_ids, options_from_collection_for_select(@users , :id, :name), :multiple => true
|
||||
|
||||
%br
|
||||
.clear
|
||||
%br
|
||||
.actions
|
||||
= submit_tag 'Save', :class => "grey-button"
|
||||
|
||||
:css
|
||||
form select {
|
||||
width:300px;
|
||||
}
|
||||
|
||||
|
||||
:javascript
|
||||
$('select#user_ids').chosen();
|
||||
$('select#repo_access').chosen();
|
||||
$('select#project_access').chosen();
|
Loading…
Add table
Add a link
Reference in a new issue