blob: 31dae5980a0f5bd61cd9a9ecf9f1becb90b30afa (
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 class="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?' }, class: 'button_to destructive' } %></td>
</tr>
<% end %>
</table>
|