summaryrefslogtreecommitdiff
path: root/app/views/ci/admin/projects/index.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/ci/admin/projects/index.html.haml')
-rw-r--r--app/views/ci/admin/projects/index.html.haml15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/views/ci/admin/projects/index.html.haml b/app/views/ci/admin/projects/index.html.haml
new file mode 100644
index 00000000000..dc7b041473b
--- /dev/null
+++ b/app/views/ci/admin/projects/index.html.haml
@@ -0,0 +1,15 @@
+%table.table
+ %thead
+ %tr
+ %th ID
+ %th Name
+ %th Last build
+ %th Access
+ %th Builds
+ %th
+
+ - @projects.each do |project|
+ = render "ci/admin/projects/project", project: project
+
+= paginate @projects
+