OSDN Git Service

t#30102:update i18n color,sp,sbt
[pettanr/pettanr.git] / app / views / balloons / list.html.erb
1 <h1>Listing balloons</h1>
2
3 <table>
4   <tr>
5     <th>id</th>
6     <th>speech_balloon_id</th>
7     <th>system_picture</th>
8     <th>x</th>
9     <th>y</th>
10     <th>Width</th>
11     <th>Height</th>
12     <th>caption</th>
13     <th>settings</th>
14     <th>created_at</th>
15     <th>updated_at</th>
16   </tr>
17
18 <% @balloons.each do |balloon| %>
19   <tr>
20     <td><%= balloon.id %></td>
21     <td><%= link_to balloon.speech_balloon_id, :controller => 'speech_balloons', :action => :browse, :id => balloon.speech_balloon_id %></td>
22     <td><%= link_to balloon.system_picture_id, :controller => 'system_pictures', :action => :browse, :id => balloon.system_picture_id %></td>
23     <td><%= balloon.x %></td>
24     <td><%= balloon.y %></td>
25     <td><%= balloon.width %></td>
26     <td><%= balloon.height %></td>
27     <td><%= balloon.caption %></td>
28     <td><%= balloon.settings %></td>
29     <td><%= balloon.created_at %></td>
30     <td><%= balloon.updated_at %></td>
31   </tr>
32 <% end %>
33 </table>