14 lines
754 B
Plaintext
14 lines
754 B
Plaintext
<div class="map-block <%= 'disabled' if !sitemap_block.sitemap_enabled %>">
|
|
<h4>
|
|
<button id="<%= sitemap_block.id %>" class="onoff pull-right"><%= sitemap_block.sitemap_enabled ? t('on_upcase') : t('off_upcase') %></button>
|
|
<span><%= sitemap_block.i18n_variable[I18n.locale] %></span>
|
|
</h4>
|
|
<ul>
|
|
<% sitemap_block.children.each do |child| %>
|
|
<li class="clear <%= 'disabled' if !child.sitemap_enabled %>">
|
|
<button id="<%= child.id %>" class="onoff pull-right" disabled="<%= 'disabled' if !sitemap_block.sitemap_enabled %>" ><%= child.sitemap_enabled ? t('on_upcase') : t('off_upcase') %></button>
|
|
<span><%= child.i18n_variable[I18n.locale] %></span>
|
|
</li>
|
|
<% end if sitemap_block.children %>
|
|
</ul>
|
|
</div> |