OSDN Git Service

d0ba00b473e81668e4445e050a6045941f35e1d4
[pettanr/pettanr.git] / app / views / panel_pictures / index.html.erb
1 <h1>Listing panel_pictures</h1>
2
3 <table>
4   <tr>
5     <th>id</th>
6     <th>panel</th>
7     <th>picture</th>
8     <th>link</th>
9     <th>x, y, z</th>
10     <th>t</th>
11     <th>WidthxHeight</th>
12     <th>vh</th>
13     <th>updated_at</th>
14   </tr>
15
16 <% @panel_pictures.each do |panel_picture| %>
17   <tr>
18     <td><%= panel_picture.id %></td>
19     <td><%= panel_picture.panel_id %></td>
20     <td><%= link_to(tag(:img, panel_picture.tmb_opt_img_tag), panel_picture.picture) %></td>
21     <td><%= h panel_picture.link %></td>
22     <td><%= panel_picture.x %>, <%= panel_picture.y %>, <%= panel_picture.z %></td>
23     <td><%= panel_picture.t %></td>
24     <td><%= panel_picture.width %>x<%= panel_picture.height %></td>
25     <td><%= panel_picture.flip %></td>
26     <td><%= panel_picture.updated_at %></td>
27   </tr>
28 <% end %>
29 </table>