master
 1<div class="row">
 2  <div class="col-3">
 3    <%= render partial: "my/shared/my_nav" %>
 4  </div>
 5  <div class="col-9">
 6    <h1>Photo <small><%= @photo.id %></small></h1>
 7    <p><%= link_to "<< Back", admin_photos_path %></p>
 8    <table class="table table-condensed">
 9      <thead>
10        <tr>
11          <th>id</th>
12          <th>processing</th>
13          <th>filename</th>
14          <th>original</th>
15          <th>content type</th>
16          <th>geolocation</th>
17          <th>sha256</th>
18          <th>created</th>
19          <th>updated</th>
20        </tr>
21      </thead>
22      <tbody>
23      <tr>
24        <td><%= link_to @photo.id, admin_photo_path(@photo.id) %></td>
25        <td><%= @photo.image_processing %></td>
26        <td><%= @photo.image %></td>
27        <td><%= @photo.original_filename %></td>
28        <td><%= @photo.content_type %></td>
29        <td><%= @photo.latitude %> <%= @photo.longitude %></td>
30        <td><%= @photo.sha256 %></td>
31        <td><%= @photo.created_at %></td>
32        <td><%= @photo.updated_at %></td>
33      </tr>
34      </tbody>
35    </table>
36
37    <h2><%= @photo.image %></h2>
38    <%= image_tag @photo.url_for(:original) %>
39    <%= image_tag @photo.url_for(:large) %>
40    <%= image_tag @photo.url_for(:thumb) %>
41  </div>
42</div>