summaryrefslogtreecommitdiff
path: root/app/views/assets/show.html.erb
blob: 694be5a51f8c7be3c96e349a10ea1e0ce077121e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<% content_for :subnavigation do %>
  <%= link_to 'Edit', edit_asset_path(@asset) %>
  <%= link_to 'Back', assets_path %>
<% end %>

<table>
  <tr>
    <td>Thumbnail</td>
    <td><%= image_tag @asset.upload.url(:medium), style: "max-width: 300px; max-height: 300px;" %></td>
  </tr>
  <tr>
    <td>Public Path</td>
    <td><%= @asset.upload.url.sub(/\?\d+$/, "") %></td>
  </tr>
  <tr>
    <td>Content Type</td>
    <td><%= @asset.upload.content_type %></td>
  </tr>
  <tr>
    <td>Size</td>
    <td><%= "#{@asset.upload.size/1024} KB" %></td>
  </tr>
</table>