2012-02-11 18:56:18 +01:00
|
|
|
%h3
|
|
|
|
= @admin_project.name
|
|
|
|
= link_to 'Edit', edit_admin_project_path(@admin_project), :class => "btn right small"
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-02-11 18:56:18 +01:00
|
|
|
%hr
|
2011-11-18 21:54:56 +01:00
|
|
|
|
2012-02-11 18:56:18 +01:00
|
|
|
%table.zebra-striped
|
2011-11-18 21:54:56 +01:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Name:
|
|
|
|
%td
|
|
|
|
= @admin_project.name
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Code:
|
|
|
|
%td
|
|
|
|
= @admin_project.code
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Path:
|
|
|
|
%td
|
|
|
|
= @admin_project.path
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Description:
|
|
|
|
%td
|
|
|
|
= @admin_project.description
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
.span-14
|
|
|
|
|
2012-02-11 18:56:18 +01:00
|
|
|
%h3
|
|
|
|
Team
|
|
|
|
%small
|
|
|
|
( #{@admin_project.users_projects.count} )
|
|
|
|
|
|
|
|
%hr
|
|
|
|
|
|
|
|
%table.zebra-striped
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Name
|
|
|
|
%th Project Access
|
|
|
|
%th Repository Access
|
|
|
|
%th
|
|
|
|
|
|
|
|
- @admin_project.users_projects.each do |tm|
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
= link_to tm.user_name, admin_users_path(tm.user)
|
|
|
|
%td= select_tag :tm_project_access, options_for_select(Project.access_options, tm.project_access), :class => "medium project-access-select", :disabled => :disabled
|
|
|
|
%td= link_to 'Edit Access', edit_admin_team_member_path(tm), :class => "btn small"
|
|
|
|
%td= link_to 'Remove from team', admin_team_member_path(tm), :confirm => 'Are you sure?', :method => :delete, :class => "btn danger small"
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-01-21 18:03:47 +01:00
|
|
|
= form_tag team_update_admin_project_path(@admin_project), :class => "bulk_import", :method => :put do
|
|
|
|
%table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Users
|
|
|
|
%th Project Access:
|
|
|
|
%th Repo Access:
|
|
|
|
|
|
|
|
%tr
|
|
|
|
%td= select_tag :user_ids, options_from_collection_for_select(@users , :id, :name), :multiple => true
|
|
|
|
%td= select_tag :project_access, options_for_select(Project.access_options), :class => "project-access-select"
|
|
|
|
|
2012-02-11 18:56:18 +01:00
|
|
|
.actions
|
|
|
|
= submit_tag 'Add', :class => "btn primary"
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-01-21 18:03:47 +01:00
|
|
|
:css
|
|
|
|
form select {
|
|
|
|
width:150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#user_ids {
|
|
|
|
width:300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
:javascript
|
|
|
|
$('select#user_ids').chosen();
|
|
|
|
$('select#repo_access').chosen();
|
|
|
|
$('select#project_access').chosen();
|
|
|
|
|