Sha256: 8ba1df0e873b2104c9d2287e470d7e9415f876e9a8da6e7384ac3a200029a1f1
Contents?: true
Size: 669 Bytes
Versions: 6
Compression:
Stored size: 669 Bytes
Contents
<%= form_with model: column, 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