Sha256: 5afd9ac323b1368246d6c312f3f009839e61fd823ecf10df8304a5af7702443c
Contents?: true
Size: 667 Bytes
Versions: 6
Compression:
Stored size: 667 Bytes
Contents
<%= form_with model: item, 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