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

23 lines
614 B
Plaintext
Raw Normal View History

2011-10-08 23:36:38 +02:00
%table
2011-11-02 16:21:17 +01:00
%thead
2011-10-08 23:36:38 +02:00
%th Name
%th Code
%th Path
%th Team Members
%th Last Commit
%th
%th
- @admin_projects.each do |project|
%tr
2011-10-14 23:12:02 +02:00
%td= link_to project.name, [:admin, project]
2011-10-08 23:36:38 +02:00
%td= project.code
%td= project.path
%td= project.users_projects.count
%td= last_commit(project)
%td= link_to 'Edit', edit_admin_project_path(project), :id => "edit_#{dom_id(project)}"
%td= link_to 'Destroy', [:admin, project], :confirm => 'Are you sure?', :method => :delete
= paginate @admin_projects
2012-01-27 08:19:55 +01:00
= link_to 'New Project', new_admin_project_path, :class => "btn"