2006-07-29 23:54:22 +04:00
|
|
|
<h2><%=l(:label_attachment_plural)%></h2>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
|
|
|
<% delete_allowed = authorize_for('versions', 'destroy_file') %>
|
|
|
|
|
2006-09-02 17:33:23 +04:00
|
|
|
<table class="listTableContent">
|
2006-06-28 22:11:03 +04:00
|
|
|
<tr class="ListHead">
|
2006-07-29 23:54:22 +04:00
|
|
|
<th><%=l(:field_version)%></th>
|
|
|
|
<th><%=l(:field_filename)%></th>
|
|
|
|
<th><%=l(:label_date)%></th>
|
|
|
|
<th><%=l(:field_filesize)%></th>
|
2006-06-28 22:11:03 +04:00
|
|
|
<th>D/L</th>
|
|
|
|
<th>MD5</th>
|
|
|
|
<% if delete_allowed %><th></th><% end %>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<% for version in @versions %>
|
2006-07-30 20:19:35 +04:00
|
|
|
<% unless version.attachments.empty? %>
|
|
|
|
<tr><td colspan="7"><%= image_tag 'package' %> <b><%= version.name %></b></td></tr>
|
2006-07-09 20:30:01 +04:00
|
|
|
<% for file in version.attachments %>
|
|
|
|
<tr class="<%= cycle("odd", "even") %>">
|
2006-06-28 22:11:03 +04:00
|
|
|
<td></td>
|
|
|
|
<td><%= link_to file.filename, :controller => 'versions', :action => 'download', :id => version, :attachment_id => file %></td>
|
|
|
|
<td align="center"><%= format_date(file.created_on) %></td>
|
2006-07-09 20:30:01 +04:00
|
|
|
<td align="center"><%= human_size(file.filesize) %></td>
|
2006-06-28 22:11:03 +04:00
|
|
|
<td align="center"><%= file.downloads %></td>
|
|
|
|
<td align="center"><small><%= file.digest %></small></td>
|
|
|
|
<% if delete_allowed %>
|
|
|
|
<td align="center">
|
|
|
|
<%= start_form_tag :controller => 'versions', :action => 'destroy_file', :id => version, :attachment_id => file %>
|
2006-07-29 23:54:22 +04:00
|
|
|
<%= submit_tag l(:button_delete), :class => "button-small" %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<%= end_form_tag %>
|
|
|
|
</td>
|
|
|
|
<% end %>
|
|
|
|
</tr>
|
2006-07-09 20:30:01 +04:00
|
|
|
<% end
|
|
|
|
reset_cycle %>
|
2006-07-30 20:19:35 +04:00
|
|
|
<% end %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<% end %>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<br />
|
|
|
|
<p>
|
2006-07-29 23:54:22 +04:00
|
|
|
<%= link_to_if_authorized '» ' + l(:label_attachment_new), :controller => 'projects', :action => 'add_file', :id => @project %>
|
2006-06-28 22:11:03 +04:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|