OSDN Git Service

import all source code
[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>resource_picture</th>
8     <th>Width</th>
9     <th>Height</th>
10     <th>Top offset</th>
11     <th>Left offset</th>
12     <th>Zindex</th>
13     <th>flip</th>
14     <th>updated_at</th>
15   </tr>
16
17 <% @panel_pictures.each do |panel_picture| %>
18   <tr>
19     <td><%= panel_picture.id %></td>
20     <td><%= panel_picture.panel_id %></td>
21     <td><%= panel_picture.resource_picture_id %></td>
22     <td><%= panel_picture.width %></td>
23     <td><%= panel_picture.height %></td>
24     <td><%= panel_picture.top_offset %></td>
25     <td><%= panel_picture.left_offset %></td>
26     <td><%= panel_picture.zindex %></td>
27     <td><%= panel_picture.flip %></td>
28     <td><%= panel_picture.updated_at %></td>
29   </tr>
30 <% end %>
31 </table>