OSDN Git Service

928b135dceed445286b88ac8ab42409e3fb87c20
[pettanr/pettanr.git] / app / views / speaches / list.html.erb
1 <h1>Listing speaches</h1>
2
3 <table>
4   <tr>
5     <th>id</th>
6     <th>balloon</th>
7     <th>content</th>
8     <th>x</th>
9     <th>y</th>
10     <th>t</th>
11     <th>Width</th>
12     <th>Height</th>
13     <th>created_at</th>
14     <th>updated_at</th>
15   </tr>
16
17 <% @speaches.each do |speach| %>
18   <tr>
19     <td><%= speach.id %></td>
20     <td><%= link_to speach.balloon_id, :controller => 'balloons', :action => :browse, :id => speach.balloon_id %></td>
21     <td><%= h speach.content %></td>
22     <td><%= speach.x %></td>
23     <td><%= speach.y %></td>
24     <td><%= speach.t %></td>
25     <td><%= speach.width %></td>
26     <td><%= speach.height %></td>
27     <td><%= speach.created_at %></td>
28     <td><%= speach.updated_at %></td>
29   </tr>
30 <% end %>
31 </table>