mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 09:21:25 +00:00
1e64b50109
- Bans - Articles - Forums - Users Further styling improvements to form elements
23 lines
582 B
Text
23 lines
582 B
Text
<table class="striped files-list">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Path</th>
|
|
<th>Size</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
|
|
<% files.each do |file| %>
|
|
<tr>
|
|
<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>
|