<% for attachment in attachments %> <% if options[:length] %> <%= link_to_short_attachment attachment, :class => 'fl FilesName02', :download => true,:length => options[:length] -%> (<%= number_to_human_size attachment.filesize , :precision => 0 %>) <% if options[:deletable] %> <%#= link_to image_tag('delete.png'), attachment_path(attachment), :data => {:confirm => l(:text_are_you_sure)}, :method => :delete, :class => 'delete', #:remote => true, #:id => "attachments_" + attachment.id.to_s, :title => l(:button_delete) %> <% end %>
<% else %> <%= link_to_short_attachment attachment, :class => 'fl FilesName02', :download => true, :length => 45 -%> (<%= number_to_human_size attachment.filesize , :precision => 0 %>) <% if options[:deletable] %> <% end %>
<% end %> <% end %> <% if defined?(thumbnails) && thumbnails %> <% images = attachments.select(&:thumbnailable?) %> <% if images.any? %>
<% images.each do |attachment| %>
<%= thumbnail_tag(attachment) %>
<% end %>
<% end %> <% end %>