blob: 51fc4869c10300f9820b47c395c3f8856994596f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<% content_for :subnavigation do %>
<%= link_to 'New asset', new_asset_path %>
<% end %>
<%= will_paginate @assets %>
<table>
<tr>
</tr>
<% @assets.each do |asset| %>
<tr>
<td><%= image_tag asset.upload.url(:thumb), style: "max-width: 100px; max-height: 100px;" %></td>
<td><%= link_to asset.name, asset.upload.url %></td>
<td><%= asset.upload.content_type %></td>
<td><%= link_to 'Show', asset %></td>
<td><%= link_to 'Edit', edit_asset_path(asset) %></td>
<td><%= button_to 'Destroy', asset, method: :delete, form: { data: { confirm: 'Are you sure?' } } %></td>
</tr>
<% end %>
</table>
|