gitlabhq/app/views/layouts/admin.html.haml
gleb 2da45e9cbf Refs #1013
Renamed protect_resque.rb => resque_authentication
Integrated resque web with the rest of gitlab
2012-06-29 13:46:24 +02:00

16 lines
806 B
Plaintext

!!! 5
%html{ :lang => "en"}
= render "layouts/head"
%body{:class => "#{app_theme} admin"}
= render "layouts/flash"
= render "layouts/head_panel", :title => "Admin area"
.container
%nav.main_menu
= link_to "Stats", admin_root_path, :class => "home #{'current' if controller.controller_name == "dashboard"}"
= link_to "Projects", admin_projects_path, :class => ('current' if controller.controller_name == "projects")
= link_to "Users", admin_users_path, :class => ('current' if controller.controller_name == 'users')
= link_to "Emails", admin_emails_path, :class => ('current' if controller.controller_name == 'mailer')
= link_to "Resque", admin_resque_path, :class => ('current' if controller.controller_name == 'resque')
.content= yield