Sha256: ef052313827dfae845ddc0717a7d9c811df4e1aec42437032d092de98f1ebcec
Contents?: true
Size: 1.01 KB
Versions: 11
Compression:
Stored size: 1.01 KB
Contents
<%= simple_form_for(@page) do |f| %> <%= page_title_with_buttons f %> <%= render layout: 'main_with_sidebar' do %> <%= hidden_field_tag :section_id, @page.section_id %> <%= render :partial => 'main_form', :locals => {:f => f} %> <% content_for :sidebar do %> <div class="sidebar-block"> <h4 class="gray">Status <%= draft_icon_tag(@block, force: true) %></h4> <% if current_user.able_to?(:publish_content) %> <h4 class="gray label">Visibility</h4> <%= f.input :visibility, label: false, collection: @page.visibilities, prompt: false, input_html: {class: 'input-block-level'} %> <% end %> </div> <div class="sidebar-block"> <h4 class="gray">Performance Tuning</h4> <%= f.input :cacheable, label: "Allow Caching?", hint: "Uncheck to allow for personalized content." %> </div> <% end %> <% end %> <%= bottom_buttons f %> <% end %>
Version data entries
11 entries across 11 versions & 2 rubygems