gitlabhq/app/views/admin/projects/show.html.haml

60 lines
1.4 KiB
Plaintext
Raw Normal View History

2011-11-18 20:10:07 +01:00
- unless notice.nil?
%p#notice= notice
2011-10-08 23:36:38 +02:00
%h2= @admin_project.name
%table.round-borders
%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
%tr
%td{:colspan => 2}
= link_to 'Edit', edit_admin_project_path(@admin_project), :class => "grey-button"
2011-10-08 23:36:38 +02:00
.span-14
%h2 Team
2011-10-08 23:36:38 +02:00
%table.round-borders
%thead
%tr
%th Name
%th Added
2011-12-07 09:04:57 +01:00
%th Project Access
%th Repository Access
%th
2011-10-08 23:36:38 +02:00
- @admin_project.users_projects.each do |tm|
%tr
2011-12-07 09:04:57 +01:00
%td
= link_to tm.user_name, admin_team_member_path(tm)
2011-10-08 23:36:38 +02:00
%td= time_ago_in_words(tm.updated_at) + " ago"
2011-12-07 09:04:57 +01:00
%td= select_tag :project_access, options_for_select(Project.access_options, tm.project_access), :class => "project-access-select", :disabled => :disabled
%td= select_tag :repo_access, options_for_select(Repository.access_options, tm.repo_access), :class => "repo-access-select", :disabled => :disabled
2011-10-08 23:36:38 +02:00
%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"