72 lines
3.7 KiB
Plaintext
72 lines
3.7 KiB
Plaintext
<div class="mt10 fl" >
|
|
<% for attachment in attachments %>
|
|
<!--<p style="width: 100%;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">-->
|
|
<!--<div style="max-width:55%;white-space: nowrap; overflow: hidden; text-overflow: ellipsis;float: left;">-->
|
|
<!--<span title="<%#= attachment.filename%>" id = "attachment_">-->
|
|
<% if options[:length] %>
|
|
<span class="pic_files fl "></span>
|
|
<%= link_to_short_attachment attachment, :class => 'fl FilesName02', :download => true,:length => options[:length] -%>
|
|
<a class="fl FilesName02"> (<%= number_to_human_size attachment.filesize , :precision => 0 %>)</a>
|
|
<% 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) %>
|
|
<span class="pic_del fl "> <a href="<%=attachment_path(attachment) %>" onclick="confirm(<%=l(:text_are_you_sure) %>)" data-method="delete"> </a></span>
|
|
<% end %>
|
|
<div class="cl"></div>
|
|
<% else %>
|
|
<span class="pic_files fl "></span>
|
|
<%= link_to_short_attachment attachment, :class => 'fl FilesName02', :download => true, :length => 80 -%>
|
|
<a href="javascript:void(0);" class="fl FilesName02"> (<%= number_to_human_size attachment.filesize , :precision => 0 %>)</a>
|
|
<% 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) %>
|
|
<a href="<%=attachment_path(attachment) %>" onclick="confirm(<%=l(:text_are_you_sure) %>)" data-method="delete"> <span class="pic_del fl "></span> </a>
|
|
<% end %>
|
|
<div class="cl"></div>
|
|
<% end %>
|
|
|
|
<%# if attachment.is_text? %>
|
|
<%#= link_to image_tag('magnifier.png'),
|
|
:controller => 'attachments',
|
|
:action => 'show',
|
|
:id => attachment,
|
|
:filename => attachment.filename%>
|
|
<%# end %>
|
|
<!--<span title="<%#= attachment.description%>">-->
|
|
<!--<%#= h(truncate(" - #{attachment.description}", length: options[:length] ? options[:length]:15, omission: '...')) unless attachment.description.blank? %>-->
|
|
<!--</span>-->
|
|
|
|
<!--<%# if options[:wrap] %>-->
|
|
<!--<br/>-->
|
|
<!-- -->
|
|
<!--<%# end %>-->
|
|
<!--<%# if options[:author] %>-->
|
|
<!--<span class="author" title="<%#= attachment.author%>">-->
|
|
<%#= link_to h(truncate(attachment.author.name, length: 10, omission: '...')),user_path(attachment.author) %>
|
|
<!--<%#= format_time(attachment.created_on) %>-->
|
|
<!--</span>-->
|
|
<!--<%# end %>-->
|
|
<!--</p>-->
|
|
<% end %>
|
|
<% if defined?(thumbnails) && thumbnails %>
|
|
<% images = attachments.select(&:thumbnailable?) %>
|
|
<% if images.any? %>
|
|
<div class="pro_pic mb10" width="100" height="73">
|
|
<% images.each do |attachment| %>
|
|
<div><%= thumbnail_tag(attachment) %></div>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|