2010-07-28 00:42:33 +00:00
|
|
|
%h1
|
2011-07-05 16:30:12 +00:00
|
|
|
= link_to current_site.name, admin_pages_url, :class => 'single'
|
2010-07-28 00:42:33 +00:00
|
|
|
|
2010-04-24 00:32:36 +00:00
|
|
|
#global-actions-bar
|
2010-07-21 23:56:42 +00:00
|
|
|
!= t('.welcome', :name => link_to(current_admin.name, edit_admin_my_account_url))
|
2010-04-24 00:32:36 +00:00
|
|
|
%span= '|'
|
2011-04-24 23:21:38 +00:00
|
|
|
= link_to t('.see'), current_site_url
|
2011-07-05 16:30:12 +00:00
|
|
|
- if multi_sites? && current_admin.sites.size > 1
|
|
|
|
%span= '|'
|
|
|
|
= link_to t('.switch'), '#', :id => 'sites-picker-link'
|
2010-04-24 00:32:36 +00:00
|
|
|
%span= '|'
|
2011-07-05 16:30:12 +00:00
|
|
|
= link_to t('.logout'), destroy_admin_session_url, :confirm => t('admin.messages.confirm')
|
|
|
|
|
|
|
|
|
|
|
|
- if multi_sites? && current_admin.sites.size > 1
|
|
|
|
#sites-picker{ :style => 'display: none' }
|
|
|
|
%ul
|
|
|
|
- current_admin.sites.each do |site|
|
|
|
|
- unless current_site._id == site._id
|
|
|
|
%li
|
|
|
|
= link_to site.name, new_admin_cross_domain_session_url(:target_id => site._id)
|
|
|
|
|
|
|
|
- if can?(:manage, Site)
|
|
|
|
%p.action
|
|
|
|
= link_to t('admin.sites_picker.new'), new_admin_site_url
|