Sha256: c94a069379b0b0b70f69cbe8b8f501d5499b3ef0264326ea13eef6a9fdae0995
Contents?: true
Size: 923 Bytes
Versions: 18
Compression:
Stored size: 923 Bytes
Contents
<%= form_with model: figure, scope: :item, url: path do |form| %> <%= render "hidden_fields", form: %> <%= render "form_errors", form: %> <div class="field"> <%= form.label :image %> <% if (image = form.object.image).attached? %> <%= image.filename %> <br> <%= form.hidden_field :image, value: form.object.image.signed_id %> <% end %> <%= form.file_field :image %> </div> <div class="field"> <%= form.label :heading %> <%= form.text_field :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> <div class="field"> <%= form.label :caption %> <%= form.text_field :caption %> </div> <%= form.submit "Done" %> <%= link_to "Discard", :back %> <% end %>
Version data entries
18 entries across 18 versions & 1 rubygems