OSDN Git Service

48994b7b610bb80afe163f47dfff12e2d4052b81
[pettanr/pettanr.git] / app / views / balloons / index.html.erb
1 <h1>Listing balloons</h1>
2
3 <table>
4   <tr>
5     <th>panel</th>
6     <th>balloonTemplate</th>
7     <th>system_picture</th>
8     <th>Tail</th>
9     <th>size</th>
10     <th>z</th>
11     <th>Top offset</th>
12     <th>Left offset</th>
13     <th>Width</th>
14     <th>Height</th>
15   </tr>
16
17 <% @balloons.each do |balloon| %>
18   <tr>
19     <td><%= balloon.panel_id %></td>
20     <td><%= balloon.balloon_template_id %></td>
21     <td><%= balloon.system_picture_id %></td>
22     <td><%= balloon.tail %></td>
23     <td><%= balloon.size %></td>
24     <td><%= balloon.z %></td>
25     <td><%= balloon.y %></td>
26     <td><%= balloon.x %></td>
27     <td><%= balloon.width %></td>
28     <td><%= balloon.height %></td>
29   </tr>
30 <% end %>
31 </table>