Sha256: 02cf8ff83e60a5593fd565221d64459e148a6f6bbd16de4e1fc317b4b9fca76c

Contents?: true

Size: 1012 Bytes

Versions: 9

Compression:

Stored size: 1012 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

9 entries across 9 versions & 1 rubygems

Version Path
alchemy_cms-2.5.3.1 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-2.5.3 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-2.5.2.2 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-2.5.2.1 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-2.5.2 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-2.5.1 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-2.5.0 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-2.5.0.rc3 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb
alchemy_cms-2.5.0.b9 app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb