OSDN Git Service

9a51fd6d93f9b659f34c5b47002e1f113e2f6ec8
[pettanr/pettanr.git] / app / views / speaches / index.html.erb
1 <h1>Listing speaches</h1>
2
3 <table>
4   <tr>
5     <th>balloon</th>
6     <th>content</th>
7     <th>Top offset</th>
8     <th>Left offset</th>
9     <th>Width</th>
10     <th>Height</th>
11   </tr>
12
13 <% @speaches.each do |speach| %>
14   <tr>
15     <td><%= speach.balloon_id %></td>
16     <td><%= h speach.content %></td>
17     <td><%= speach.y %></td>
18     <td><%= speach.x %></td>
19     <td><%= speach.width %></td>
20     <td><%= speach.height %></td>
21   </tr>
22 <% end %>
23 </table>
24