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

23 lines
711 B
Plaintext
Raw Normal View History

2012-02-11 18:56:18 +01:00
%h3
Projects
= link_to 'New Project', new_admin_project_path, :class => "btn small right"
2012-04-13 07:12:34 +02:00
%br
%table.zebra-striped.table-bordered
2011-11-02 16:21:17 +01:00
%thead
2011-10-08 23:36:38 +02:00
%th Name
%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.path
%td= project.users_projects.count
%td= last_commit(project)
2012-02-11 18:56:18 +01:00
%td= link_to 'Edit', edit_admin_project_path(project), :id => "edit_#{dom_id(project)}", :class => "btn small"
%td= link_to 'Destroy', [:admin, project], :confirm => 'Are you sure?', :method => :delete, :class => "btn small danger"
2012-03-21 23:09:56 +01:00
= paginate @admin_projects, :theme => "admin"