Sha256: e72bfec0eb853c4b53bdd7dd56b6a23d9e5d09dd3812cac3f19f0915f51cfafc

Contents?: true

Size: 835 Bytes

Versions: 11

Compression:

Stored size: 835 Bytes

Contents

<div class="row column gallery__container">
  <fieldset>
    <legend><%= t(".gallery_legend") %></legend>

    <% if @form.photos.any? %>
      <% @form.photos.each do |photo| %>
        <div class="callout gallery__item" data-closable>
          <%= image_tag photo.thumbnail_url, class: "thumbnail", alt: photo.file.file.filename %>
          <%= form.hidden_field :photos, multiple: true, value: photo.id, id: "photo-#{photo.id}" %>
          <button class="close-button" aria-label="<%= t(".delete_image") %>" title="<%= t(".delete_image") %>" type="button" data-close>
            <span aria-hidden="true">&times;</span>
          </button>
        </div>
      <% end %>
    <% end %>

    <div class="row column">
      <%= form.file_field :add_photos, multiple: true, label: t(".add_images") %>
    </div>
  </fieldset>
</div>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
decidim-admin-0.24.3 app/views/decidim/admin/shared/_gallery.html.erb
decidim-admin-0.23.6 app/views/decidim/admin/shared/_gallery.html.erb
decidim-admin-0.24.2 app/views/decidim/admin/shared/_gallery.html.erb
decidim-admin-0.23.5 app/views/decidim/admin/shared/_gallery.html.erb
decidim-admin-0.24.1 app/views/decidim/admin/shared/_gallery.html.erb
decidim-admin-0.24.0 app/views/decidim/admin/shared/_gallery.html.erb
decidim-admin-0.24.0.rc2 app/views/decidim/admin/shared/_gallery.html.erb
decidim-admin-0.23.4 app/views/decidim/admin/shared/_gallery.html.erb
decidim-admin-0.24.0.rc1 app/views/decidim/admin/shared/_gallery.html.erb
decidim-admin-0.23.3 app/views/decidim/admin/shared/_gallery.html.erb
decidim-admin-0.23.2 app/views/decidim/admin/shared/_gallery.html.erb