2014-04-20 01:29:52 +00:00
|
|
|
<table class="striped files-list">
|
2014-03-23 00:22:25 +00:00
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Path</th>
|
|
|
|
<th>Size</th>
|
|
|
|
<th>Actions</th>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<% files.each do |file| %>
|
2014-04-20 01:29:52 +00:00
|
|
|
<tr>
|
2014-03-23 00:22:25 +00:00
|
|
|
<td><%= namelink file %></td>
|
|
|
|
<td><%= h file.url %></td>
|
|
|
|
<td><%= file.size_s %></td>
|
|
|
|
<td>
|
|
|
|
<% if file.can_update? cuser %>
|
2014-04-19 01:12:02 +00:00
|
|
|
<%= link_to icon('pencil'), edit_data_file_path(file) %>
|
2014-03-23 00:22:25 +00:00
|
|
|
<% end; if file.can_destroy? cuser %>
|
2014-04-20 01:29:52 +00:00
|
|
|
<%= link_to icon('times'), file, confirm: 'Are you sure?', method: :delete %>
|
2014-03-23 00:22:25 +00:00
|
|
|
<% end %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|