orbit-basic/app/views/admin/sites/_sitemap_block.html.erb

16 lines
797 B
Plaintext
Raw Normal View History

2013-10-30 09:26:31 +00:00
<li class="map-block">
<h6>
2013-10-30 09:26:31 +00:00
<%= check_box_tag nil, nil, !sitemap_block.show_in_sitemap_for(temp_locale), id: sitemap_block.id, class: "toggle-check onoff", "temp_locale" => temp_locale, data: {deploy: "right"} %>
<span><%= sitemap_block_counter + 1 %> <%= sitemap_block.title_translations[temp_locale] %></span>
</h6>
<ul>
<% sitemap_block.children.each_with_index do |child, i| %>
2013-10-30 09:26:31 +00:00
<li>
2013-08-28 10:29:21 +00:00
<h6>
2013-10-30 09:26:31 +00:00
<%= check_box_tag nil, nil, !child.show_in_sitemap_for(temp_locale), id: child.id, class: "toggle-check onoff", "temp_locale" => temp_locale, data: {deploy: "right"} %>
2013-08-28 10:29:21 +00:00
<span><%= "#{sitemap_block_counter + 1}-#{i + 1}" %> <%= child.title_translations[temp_locale] %></span>
</h6>
</li>
2012-07-26 07:37:29 +00:00
<% end if sitemap_block.children %>
</ul>
</li>