Chris@0:
Chris@0: <%= link_to_if_authorized l(:label_attachment_new), {:controller => 'projects', :action => 'add_file', :id => @project}, :class => 'icon icon-add' %> Chris@0:
Chris@0: Chris@0:

<%=l(:label_attachment_plural)%>

Chris@0: Chris@0: <% delete_allowed = User.current.allowed_to?(:manage_files, @project) %> Chris@0: Chris@0: Chris@0: Chris@0: <%= sort_header_tag('filename', :caption => l(:field_filename)) %> Chris@0: <%= sort_header_tag('created_on', :caption => l(:label_date), :default_order => 'desc') %> Chris@0: <%= sort_header_tag('size', :caption => l(:field_filesize), :default_order => 'desc') %> Chris@0: <%= sort_header_tag('downloads', :caption => l(:label_downloads_abbr), :default_order => 'desc') %> Chris@0: Chris@0: Chris@0: Chris@0: Chris@0: <% @containers.each do |container| %> Chris@0: <% next if container.attachments.empty? -%> Chris@0: <% if container.is_a?(Version) -%> Chris@0: Chris@0: Chris@0: Chris@0: <% end -%> Chris@0: <% container.attachments.each do |file| %> Chris@0: "> Chris@0: Chris@0: Chris@0: Chris@0: Chris@0: Chris@0: Chris@0: Chris@0: <% end Chris@0: reset_cycle %> Chris@0: <% end %> Chris@0: Chris@0:
MD5
Chris@0: <%= link_to(h(container), {:controller => 'versions', :action => 'show', :id => container}, :class => "icon icon-package") %> Chris@0:
<%= link_to_attachment file, :download => true, :title => file.description %><%= format_time(file.created_on) %><%= number_to_human_size(file.filesize) %><%= file.downloads %><%= file.digest %> Chris@0: <%= link_to(image_tag('delete.png'), {:controller => 'attachments', :action => 'destroy', :id => file}, Chris@0: :confirm => l(:text_are_you_sure), :method => :post) if delete_allowed %> Chris@0:
Chris@0: Chris@0: <% html_title(l(:label_attachment_plural)) -%>