You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_links.rhtml 882B

123456789101112131415161718
  1. <div class="attachments">
  2. <% for attachment in attachments %>
  3. <p><%= link_to_attachment attachment, :class => 'icon icon-attachment' -%>
  4. <%= h(" - #{attachment.description}") unless attachment.description.blank? %>
  5. <span class="size">(<%= number_to_human_size attachment.filesize %>)</span>
  6. <% if options[:deletable] %>
  7. <%= link_to image_tag('delete.png'), {:controller => 'attachments', :action => 'destroy', :id => attachment},
  8. :confirm => l(:text_are_you_sure),
  9. :method => :post,
  10. :class => 'delete',
  11. :title => l(:button_delete) %>
  12. <% end %>
  13. <% if options[:author] %>
  14. <span class="author"><%= attachment.author %>, <%= format_time(attachment.created_on) %></span>
  15. <% end %>
  16. </p>
  17. <% end %>
  18. </div>