2011-10-30 23:02:41 +00:00
|
|
|
%h1
|
2011-11-08 14:34:25 +00:00
|
|
|
= link_to current_site.name, pages_url
|
2011-10-30 23:02:41 +00:00
|
|
|
|
2011-11-08 00:11:15 +00:00
|
|
|
= render_cell 'locomotive/global_actions', :show, :current_locomotive_account => current_locomotive_account, :current_site_url => current_site_url
|
2011-10-30 23:02:41 +00:00
|
|
|
|
2011-11-04 15:55:51 +00:00
|
|
|
- if multi_sites? && current_locomotive_account.sites.size > 1
|
2011-10-30 23:02:41 +00:00
|
|
|
#sites-picker{ :style => 'display: none' }
|
|
|
|
%ul
|
2011-11-04 15:55:51 +00:00
|
|
|
- current_locomotive_account.sites.each do |site|
|
2011-10-30 23:02:41 +00:00
|
|
|
- unless current_site._id == site._id
|
|
|
|
%li
|
2011-10-31 23:44:23 +00:00
|
|
|
= link_to site.name, new_cross_domain_session_url(:target_id => site._id)
|
2011-10-30 23:02:41 +00:00
|
|
|
|
2011-11-08 14:34:25 +00:00
|
|
|
- if can?(:manage, Locomotive::Site)
|
2011-10-30 23:02:41 +00:00
|
|
|
%p.action
|
2011-10-31 23:44:23 +00:00
|
|
|
= link_to t('locomotive.sites_picker.new'), new_site_url
|