OSDN Git Service

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