summaryrefslogtreecommitdiff
path: root/app/views/admin/dashboard/index.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/dashboard/index.html.haml')
-rw-r--r--app/views/admin/dashboard/index.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/admin/dashboard/index.html.haml b/app/views/admin/dashboard/index.html.haml
index 886943be6de..2e67abfc16d 100644
--- a/app/views/admin/dashboard/index.html.haml
+++ b/app/views/admin/dashboard/index.html.haml
@@ -5,11 +5,11 @@
Resque Workers
.data.padded
= link_to admin_resque_path do
- %h1{:class => @workers.present? ? "cgreen" : "cred"}
+ %h1{class: @workers.present? ? "cgreen" : "cred"}
= @workers.count
%hr
%p
- %strong{:class => @pending_jobs > 0 ? "cred" : "cgreen"}
+ %strong{class: @pending_jobs > 0 ? "cred" : "cgreen"}
#{@pending_jobs} post receive jobs waiting
.span4
@@ -19,7 +19,7 @@
= link_to admin_projects_path do
%h1= Project.count
%hr
- = link_to 'New Project', new_admin_project_path, :class => "btn small"
+ = link_to 'New Project', new_admin_project_path, class: "btn small"
.span4
.ui-box
%h5 Users
@@ -27,7 +27,7 @@
= link_to admin_users_path do
%h1= User.count
%hr
- = link_to 'New User', new_admin_user_path, :class => "btn small"
+ = link_to 'New User', new_admin_user_path, class: "btn small"
.row