Sha256: 5bb59c2490df6938368865072c6bc5b3fce79d9643eff9c6e5cc56625a4be2b0

Contents?: true

Size: 670 Bytes

Versions: 6

Compression:

Stored size: 670 Bytes

Contents

<%= form_with model: section, scope: :item, url: path do |form| %>
  <%= render "hidden_fields", form: form %>
  <%= render "form_errors", form: form %>

  <div class="field">
    <%= form.label :heading %>
    <%= form.text_field :heading %>
  </div>

  <div class="field">
    <%= form.label :show_heading %>
    <%= form.check_box :show_heading %>
  </div>

  <div class="field">
    <%= form.label :background %>
    <%= form.select :background, Katalyst::Content.config.backgrounds %>
  </div>

  <div class="field">
    <%= form.label :visible %>
    <%= form.check_box :visible %>
  </div>

  <%= form.submit "Done" %>
  <%= link_to "Discard", :back %>
<% end %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
katalyst-content-1.0.2 app/views/katalyst/content/sections/_section.html+form.erb
katalyst-content-1.0.1 app/views/katalyst/content/sections/_section.html+form.erb
katalyst-content-1.0.0 app/views/katalyst/content/sections/_section.html+form.erb
katalyst-content-0.2.2 app/views/katalyst/content/sections/_section.html+form.erb
katalyst-content-0.2.1 app/views/katalyst/content/sections/_section.html+form.erb
katalyst-content-0.2.0 app/views/katalyst/content/sections/_section.html+form.erb