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

11 lines
557 B
Plaintext
Raw Normal View History

2013-08-28 10:29:21 +00:00
<% sitemap_block.children.each_with_index do |child, i| %>
<li "<%= 'disabled' if !child.show_in_sitemap_for(temp_locale) %>">
<h6>
<%= content_tag :button, :id => child.id, :temp_locale => temp_locale, :disabled => !child.show_in_sitemap_for(temp_locale) do %>
2012-07-27 08:53:12 +00:00
<% end %>
2013-08-28 10:29:21 +00:00
<input type="checkbox" class="toggle-check" data-deploy="right">
<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 %>