mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-16 06:40:37 +00:00
6f56bf81fd
Improved layout Improved form styling Fixes issues with firefox Added menu icons
23 lines
610 B
Text
23 lines
610 B
Text
<table class="data">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Path</th>
|
|
<th>Size</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
|
|
<% files.each do |file| %>
|
|
<tr class="<%= cycle('even', 'odd') %>">
|
|
<td><%= namelink file %></td>
|
|
<td><%= h file.url %></td>
|
|
<td><%= file.size_s %></td>
|
|
<td>
|
|
<% if file.can_update? cuser %>
|
|
<%= link_to icon('pencil'), edit_data_file_path(file) %>
|
|
<% end; if file.can_destroy? cuser %>
|
|
<%= link_to icon('times'), file, :confirm => 'Are you sure?', :method => :delete %>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|