Sha256: 17ea1081966f37276f3c15e2d4b0fbc5e6d7dee9621d6b51adcbc3291be6d438

Contents?: true

Size: 990 Bytes

Versions: 27

Compression:

Stored size: 990 Bytes

Contents

<%- max_image_count = options[:maximum_amount_of_images] || options[:max_images] -%>
<div class="content_editor picture_gallery_editor">
  <label><%= _t("picture_gallery_editor.#{element.name}", default: _t(:picture_gallery_editor)) %></label>
  <div class="picture_gallery_images" id="element_<%= element.id %>_contents">
    <%- pictures.each do |picture| -%>
      <%= render_essence_editor(picture, {dragable: (pictures.size > 1)}.merge(options)) %>
    <%- end -%>
    <%- if max_image_count.blank? || pictures.length < max_image_count.to_i -%>
      <%= render(
        partial: 'alchemy/admin/elements/add_picture',
        locals: {
          element: element,
          options: options,
          dragable: (pictures.size > 1)
        }
      ) %>
    <%- end -%>
  </div>
</div>
<%- if pictures.size > 1 -%>
<script type="text/javascript" charset="utf-8">
  Alchemy.SortableContents('#element_<%= element.id %>_contents', '<%= form_authenticity_token %>');
</script>
<%- end -%>

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
alchemy_cms-3.2.1 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.1.3 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
lc_alchemy_cms-3.2.1 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
lc_alchemy_cms-3.2.0 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.2.0 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.2.0.rc1 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.2.0.beta app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.1.1 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.0.4 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.1.0 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.1.0.rc3 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.1.0.rc2 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.1.0.rc1 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.1.0.beta6 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.1.0.beta5 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.1.0.beta4 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.0.3 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.1.0.beta3 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.1.0.beta2 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-3.1.0.beta1 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb