48 lines
1.5 KiB
Plaintext
48 lines
1.5 KiB
Plaintext
<h2><%=_('Files')%></h2>
|
|
|
|
<% delete_allowed = authorize_for('versions', 'destroy_file') %>
|
|
|
|
<table border="0" cellspacing="1" cellpadding="2" class="listTableContent">
|
|
<tr class="ListHead">
|
|
<th><%=_('Version')%></th>
|
|
<th><%=_('File')%></th>
|
|
<th><%=_('Date')%></th>
|
|
<th><%=_('Size')%></th>
|
|
<th>D/L</th>
|
|
<th>MD5</th>
|
|
<% if delete_allowed %><th></th><% end %>
|
|
</tr>
|
|
|
|
<% for version in @versions %>
|
|
<tr>
|
|
<td colspan="7"><%= image_tag 'package' %> <b><%= version.name %></b></td>
|
|
</tr>
|
|
<% odd_or_even = 1
|
|
for file in version.attachments
|
|
odd_or_even = 1 - odd_or_even %>
|
|
<tr class="ListLine<%= odd_or_even %>">
|
|
<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>
|
|
<td align="center"><%= human_size(file.size) %></td>
|
|
<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 %>
|
|
<%= submit_tag _('Delete'), :class => "button-small" %>
|
|
<%= end_form_tag %>
|
|
</td>
|
|
<% end %>
|
|
</tr>
|
|
<% end %>
|
|
<% end %>
|
|
</table>
|
|
|
|
<br />
|
|
<p>
|
|
<%= link_to_if_authorized '» ' + _('New'), :controller => 'projects', :action => 'add_file', :id => @project %>
|
|
</p>
|
|
|
|
|