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

61 lines
1.5 KiB
Plaintext
Raw Normal View History

2012-04-20 18:41:49 +02:00
.admin_dash.row
.span3
.ui-box
2013-01-04 23:35:38 +01:00
%h5.title Projects
.data.padded
= link_to admin_projects_path do
%h1= Project.count
%hr
= link_to 'New Project', new_project_path, class: "btn small"
.span3
.ui-box
2013-01-04 23:35:38 +01:00
%h5.title Groups
.data.padded
= link_to admin_groups_path do
%h1= Group.count
%hr
= link_to 'New Group', new_admin_group_path, class: "btn small"
.span3
.ui-box
2013-01-04 23:35:38 +01:00
%h5.title Users
.data.padded
= link_to admin_users_path do
%h1= User.count
%hr
= link_to 'New User', new_admin_user_path, class: "btn small"
.span3
2012-04-20 18:41:49 +02:00
.ui-box
2013-01-04 23:35:38 +01:00
%h5.title
2012-04-20 18:41:49 +02:00
Resque Workers
.data.padded
- if @resque_accessible
= link_to admin_resque_path do
%h1{class: @workers.present? ? "cgreen" : "cred"}
= @workers.count
%hr
%p
%strong{class: @pending_jobs > 0 ? "cred" : "cgreen"}
#{@pending_jobs} post receive jobs waiting
- else
= link_to admin_resque_path do
%h1.cdark ?
%hr
%p
%strong Resque status unknown
2012-04-20 18:41:49 +02:00
.row
.span6
%h3 Latest projects
%hr
- @projects.each do |project|
2012-08-25 19:31:19 +02:00
%p
= link_to project.name_with_namespace, [:admin, project]
2012-04-20 18:41:49 +02:00
.span6
%h3 Latest users
%hr
- @users.each do |user|
2012-08-25 19:31:19 +02:00
%p
= link_to [:admin, user] do
2012-08-25 19:31:19 +02:00
= user.name
%small= user.email