Sha256: 671e2479af7ca2969b0b2160485c2a757e9681e82b107083b6f2fdd280a246ff
Contents?: true
Size: 1.33 KB
Versions: 13
Compression:
Stored size: 1.33 KB
Contents
<%= provide(:page_title, "Secciones") %> <div class="row-fluid"> <div class="widget widget-padding span12" id="wizard"> <div class="widget-header"> <ul class="nav nav-tabs"> <% current_page = "no-page" %> <% @sections.each_with_index do |section, index| %> <% if current_page != section.page %> <% if index == 0 %> <li class = "active"> <% else %> <li> <% end %> <%= link_to (section.page.capitalize), "#tab#{index}", "data-toggle" => "tab" %></li> <% current_page = section.page %> <% end %> <% end %> </ul> </div> <div class="widget-body"> <div class="tab-content"> <% current_page = "no-page" %> <% @sections.each_with_index do |section, index| %> <% if current_page != section.page %> <% if index == 0 %> <div class="tab-pane active" id="tab<%= index %>"> <% else %> <div class="tab-pane" id="tab<%= index %>"> <% end %> <% section_pages = Adminpanel::Section.of_page section.page %> <%= render "sections_table", :sections => section_pages %> </div> <% current_page = section.page %> <% end %> <% end %> </div> </div> </div> </div>
Version data entries
13 entries across 13 versions & 1 rubygems