%= tabs do |t| %>
<% I18n.available_locales.each do |locale| %>
<%= t.pane t("locale_names.#{locale}", :default => "#{locale}".humanize) do %>
<% Page.where(:locale => "#{locale}").roots.each do |root| %>
<% Page.each_with_level(root.self_and_descendants) do |page, level| %>
<%= nav_item page.name, edit_admin_page_path(page), :icon => (page.root? ? "home" : "file"), :style => "line-height: 36px; padding-left:#{20 * level}px" %>
<% end %>
<% end %>
<% end %>
<% end %>
<% end %>