OSDN Git Service

18e665c6d73ed88be3200cb7cb96071c4b64a74b
[pettanr/pettanr.git] / app / views / ground_pictures / index.html.erb
1 <h1>Listing Ground Pictures</h1>
2
3 <table>
4   <tr>
5     <th>id</th>
6     <th>panel_id</th>
7     <th>picture_id</th>
8     <th>repeat</th>
9     <th>position x,y</th>
10     <th>z</th>
11   </tr>
12
13 <% @ground_pictures.each do |gp| %>
14   <tr>
15     <td><%= gp.id %></td>
16     <td><%= link_to gp.panel_id, panel_path(gp.panel_id) %></td>
17     <td><%= link_to gp.picture_id, color_path(gp.picture_id) %></td>
18     <td><%= gp.repeat %><%= MagicNumber['ground_picture_repeat_items'][gp.repeat] %></td>
19     <td><%= gp.x %>, <%= gp.y %></td>
20     <td><%= gp.z %></td>
21   </tr>
22 <% end -%>
23 </table>