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

76 lines
1.6 KiB
Plaintext
Raw Normal View History

2012-04-20 18:41:49 +02:00
.admin_dash.row
2013-01-09 06:14:05 +01:00
.span4
.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
2013-01-29 21:29:21 +01:00
= link_to 'New Project', new_project_path, class: "btn btn-small"
2013-01-09 06:14:05 +01:00
.span4
.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
2013-01-29 21:29:21 +01:00
= link_to 'New Group', new_admin_group_path, class: "btn btn-small"
2013-01-09 06:14:05 +01:00
.span4
.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
2013-01-29 21:29:21 +01:00
= link_to 'New User', new_admin_user_path, class: "btn btn-small"
2012-04-20 18:41:49 +02:00
.row
.span4
%h4 Latest projects
2012-04-20 18:41:49 +02:00
%hr
- @projects.each do |project|
2012-08-25 19:31:19 +02:00
%p
= link_to project.name_with_namespace, [:admin, project]
2013-01-30 15:40:43 +01:00
%span.light.pull-right
= time_ago_in_words project.created_at
ago
.span4
%h4 Latest users
2012-04-20 18:41:49 +02:00
%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
2013-01-30 15:40:43 +01:00
%span.light.pull-right
= time_ago_in_words user.created_at
ago
.span4
%h4 Stats
%hr
%p
Issues
2013-01-30 15:40:43 +01:00
%span.light.pull-right
= Issue.count
%p
Merge Requests
2013-01-30 15:40:43 +01:00
%span.light.pull-right
= MergeRequest.count
%p
Notes
2013-01-30 15:40:43 +01:00
%span.light.pull-right
= Note.count
%p
Snippets
2013-01-30 15:40:43 +01:00
%span.light.pull-right
= Snippet.count
%p
SSH Keys
2013-01-30 15:40:43 +01:00
%span.light.pull-right
= Key.count
%p
Milestones
2013-01-30 15:40:43 +01:00
%span.light.pull-right
= Milestone.count