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.haml8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/views/admin/projects/index.html.haml b/app/views/admin/projects/index.html.haml
index 310cfa53890..1f5b31eca5f 100644
--- a/app/views/admin/projects/index.html.haml
+++ b/app/views/admin/projects/index.html.haml
@@ -1,5 +1,5 @@
%h3.page_title
- Projects (#{@projects.count})
+ Projects (#{Project.count})
= link_to 'New Project', new_project_path, class: "btn small right"
%br
= form_tag admin_projects_path, method: :get, class: 'form-inline' do
@@ -15,6 +15,7 @@
%i.icon-sort-down
%th Path
%th Team Members
+ %th Owner
%th Last Commit
%th Edit
%th.cred Danger Zone!
@@ -26,6 +27,11 @@
%td
%span.monospace= project.path_with_namespace + ".git"
%td= project.users_projects.count
+ %td
+ - if project.owner
+ = link_to project.owner.name, [:admin, project.owner]
+ - else
+ (deleted)
%td= last_commit(project)
%td= link_to 'Edit', edit_admin_project_path(project), id: "edit_#{dom_id(project)}", class: "btn small"
%td.bgred= link_to 'Destroy', [:admin, project], confirm: "REMOVE #{project.name}? Are you sure?", method: :delete, class: "btn small danger"