Sha256: da970aa5c91f1eb504f0e0cc5f47c74d4a00b87c8878e8acb66980199d2c765d
Contents?: true
Size: 735 Bytes
Versions: 21
Compression:
Stored size: 735 Bytes
Contents
<%= form_with model: column, scope: :item, url: path do |form| %> <%= render "hidden_fields", form: %> <%= render "form_errors", form: %> <div class="field"> <%= form.label :heading %> <%= form.text_field :heading %> </div> <div class="field"> <%= form.label :heading_style %> <%= form.collection_radio_buttons :heading_style, Katalyst::Content.config.heading_styles, :itself, :itself %> </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
21 entries across 21 versions & 1 rubygems