Sha256: 4ef8d741f62ee9bdaa4cd35fec55f6f1e9a74b71555337f7fd5ac1819ad7e05d

Contents?: true

Size: 1.19 KB

Versions: 17

Compression:

Stored size: 1.19 KB

Contents

<%= render partial: 'spree/admin/shared/product_tabs', locals: { current: :images } %>

<%= render partial: 'spree/admin/shared/error_messages', locals: { target: @image } %>

<%= form_for [:admin, @product, @image], html: { multipart: true } do |f| %>
  <div data-hook="edit_image" class="card mb-3">
    <div class="card-header">
      <h1 class="card-title mb-0 h5">
        <%= @image.attachment_file_name%>
      </h1>
    </div>
    <div class="card-body">
      <div class="form-group">
        <div data-hook="thumbnail" class="col-12 col-lg-3 text-center">
          <%= f.label Spree.t(:thumbnail) %>
          <%= link_to image_tag(main_app.url_for(@image.url(:small))), main_app.rails_blob_url(@image.attachment) %>
        </div>
        <div class="col-12 col-lg-9">
          <%= render partial: 'form', locals: { f: f } %>
        </div>

        <div class="form-actions" data-hook="buttons">
          <%= button Spree.t('actions.update'), 'save' %>
          <span class="or"><%= Spree.t(:or) %></span>
          <%= button_link_to Spree.t('actions.cancel'), spree.admin_product_images_url(@product), id: 'cancel_link', icon: 'delete' %>
        </div>
      </div>
    </div>
  </div>
<% end %>

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
spree_backend-4.1.15 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.14 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.13.1 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.13 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.12 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.11 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.10 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.9 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.8 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.7 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.6 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.5 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.4 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.3 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.2 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.1 app/views/spree/admin/images/edit.html.erb
spree_backend-4.1.0 app/views/spree/admin/images/edit.html.erb