2011-10-08 23:36:38 +02:00
|
|
|
%p#notice= notice
|
|
|
|
|
|
|
|
.span-8.colborder
|
2011-10-26 15:46:25 +02:00
|
|
|
%h2= @admin_project.name
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
%p
|
|
|
|
%b Name:
|
|
|
|
= @admin_project.name
|
|
|
|
%p
|
|
|
|
%b Code:
|
|
|
|
= @admin_project.code
|
|
|
|
%p
|
|
|
|
%b Path:
|
|
|
|
= @admin_project.path
|
|
|
|
%p
|
|
|
|
%b Description:
|
|
|
|
= @admin_project.description
|
|
|
|
|
|
|
|
= link_to 'Edit', edit_admin_project_path(@admin_project)
|
|
|
|
\|
|
|
|
|
= link_to 'Back', admin_projects_path
|
|
|
|
|
|
|
|
.span-14
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
%h2 Team
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
%table.round-borders
|
|
|
|
%tr
|
|
|
|
%th Name
|
2011-10-26 15:46:25 +02:00
|
|
|
%th Added
|
2011-10-08 23:36:38 +02:00
|
|
|
%th Web
|
|
|
|
%th Git
|
|
|
|
%th Admin
|
2011-10-26 15:46:25 +02:00
|
|
|
%th
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
- @admin_project.users_projects.each do |tm|
|
|
|
|
%tr
|
|
|
|
%td= link_to tm.user_name, admin_team_member_path(tm)
|
|
|
|
%td= time_ago_in_words(tm.updated_at) + " ago"
|
|
|
|
%td= check_box_tag "read", 1, @admin_project.readers.include?(tm.user), :disabled => :disabled
|
|
|
|
%td= check_box_tag "commit", 1, @admin_project.writers.include?(tm.user), :disabled => :disabled
|
|
|
|
%td.span-2= check_box_tag "admin", 1, @admin_project.admins.include?(tm.user), :disabled => :disabled
|
|
|
|
%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})
|