% if @project.project_type == 1 %>
<% if User.current.member_of?(@project) %>
<%= link_to(l(:label_file_upload), new_project_file_path(@project), :class => 'icon icon-add') if User.current.allowed_to?(:manage_files, @project) %>
<% end %>
<% else %>
<%= link_to(l(:label_attachment_new), new_project_file_path(@project), :class => 'icon icon-add') if User.current.allowed_to?(:manage_files, @project) %>
<% end %>
<%=l(:label_attachment_plural)%>
<% delete_allowed = User.current.allowed_to?(:manage_files, @project) %>
<%= sort_header_tag('filename', :caption => l(:field_filename)) %>
<%= sort_header_tag('created_on', :caption => l(:label_date), :default_order => 'desc') %>
<%= sort_header_tag('size', :caption => l(:field_filesize), :default_order => 'desc') %>
<%= sort_header_tag('description', :caption => l(:field_description)) %> |
|
<% @containers.each do |container| %>
<% next if container.attachments.empty? -%>
<% if container.is_a?(Version) -%>
<%= link_to(h(container), {:controller => 'versions', :action => 'show', :id => container}, :class => "icon icon-package") %>
|
<% end -%>
<% container.attachments.each do |file| %>
">
<%= link_to_attachment file, :download => true, :title => file.description %> |
<%= format_time(file.created_on) %> |
<%= number_to_human_size(file.filesize) %> |
<%= file.description %> |
<%= link_to(image_tag('delete.png'), attachment_path(file),
:data => {:confirm => l(:text_are_you_sure)}, :method => :delete) if delete_allowed %>
|
<% end
reset_cycle %>
<% end %>
<% html_title(l(:label_attachment_plural)) -%>