Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/users/index.html.haml')
-rw-r--r--app/views/admin/users/index.html.haml24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/views/admin/users/index.html.haml b/app/views/admin/users/index.html.haml
new file mode 100644
index 00000000000..db60a613bce
--- /dev/null
+++ b/app/views/admin/users/index.html.haml
@@ -0,0 +1,24 @@
+%table
+ %tr
+ %th Admin
+ %th Name
+ %th Email
+ %th Projects
+ %th
+ %th
+ %th
+
+ - @admin_users.each do |user|
+ %tr
+ %td= check_box_tag "admin", 1, user.admin, :disabled => :disabled
+ %td= user.name
+ %td= user.email
+ %td= user.users_projects.count
+ %td= link_to 'Show', [:admin, user]
+ %td= link_to 'Edit', edit_admin_user_path(user), :id => "edit_#{dom_id(user)}"
+ %td= link_to 'Destroy', [:admin, user], :confirm => 'Are you sure?', :method => :delete
+
+%br
+
+= paginate @admin_users
+= link_to 'New User', new_admin_user_path