<%= link_to image_tag("icons/icon-copypaste.png"), "#attachments-table", :class => "clipboard-link", :id => "attachments-#{attachment.id}", :title => t('admin.attachments.copypaste') %>
|
<%= link_to attachment.data_file_name, attachment.data.url(:original, false), :"data-popup" => true, :class => 'url' %>
|
<%= number_to_human_size(attachment.data_file_size) %> |
<%= link_to I18n.t('admin.attachments.destroy'),
destroy_attachment_admin_page_path(@page.id, :attachment_id => attachment.id),
{:method => :delete,
:confirm => t("admin.attachments.destroy_confirmation"),
:remote => true,
:class => 'icon icon-destroy', :title => I18n.t('admin.attachments.destroy')} %>
|
<% end %>