OpenProject is the leading open source project management software.
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.
openproject/app/views/attachments/_links.html.erb

20 lines
945 B

<div class="attachments">
<% for attachment in attachments %>
<p><%= link_to_attachment attachment, :class => 'icon icon-attachment' -%>
<%= h(" - #{attachment.description}") unless attachment.description.blank? %>
<span class="size">(<%= number_to_human_size attachment.filesize %>)</span>
<% if options[:deletable] %>
13 years ago
<%= link_to image_tag('delete.png', :alt => l(:button_delete), :title => l(:button_delete)),
attachment_path(attachment),
13 years ago
{ :confirm => l(:text_are_you_sure),
:method => :delete,
13 years ago
:class => 'delete',
:title => l(:button_delete) } %>
<% end %>
<% if options[:author] %>
<span class="author"><%= h(attachment.author) %>, <%= format_time(attachment.created_on) %></span>
<% end %>
</p>
<% end %>
</div>