summaryrefslogtreecommitdiff
path: root/app/views/admin/projects/index.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/projects/index.html.haml')
-rw-r--r--app/views/admin/projects/index.html.haml26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/views/admin/projects/index.html.haml b/app/views/admin/projects/index.html.haml
new file mode 100644
index 00000000000..55c41ec31bb
--- /dev/null
+++ b/app/views/admin/projects/index.html.haml
@@ -0,0 +1,26 @@
+%table
+ %tr
+ %th Name
+ %th Code
+ %th Path
+ %th Team Members
+ %th Last Commit
+ %th
+ %th
+ %th
+
+ - @admin_projects.each do |project|
+ %tr
+ %td= project.name
+ %td= project.code
+ %td= project.path
+ %td= project.users_projects.count
+ %td= last_commit(project)
+ %td= link_to 'Show', [:admin, 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
+
+%br
+
+= paginate @admin_projects
+= link_to 'New Project', new_admin_project_path