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

Version Path
katalyst-content-2.8.0 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.7.1 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.7.0 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.6.2 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.6.1 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.6.0 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.5.1 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.5.0 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.4.2 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.4.1 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.3.2 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.3.1 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.3.0 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.2.0 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.1.4 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.1.3 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.1.2 app/views/katalyst/content/figures/_figure.html+form.erb
katalyst-content-2.1.1 app/views/katalyst/content/figures/_figure.html+form.erb