OSDN Git Service

7e59e7d0b000d0bbcbdf31041c8d2c1788c1f600
[pettanr/pettanr.git] / app / views / balloon_templates / index.html.erb
1 <h1>Listing balloon_templates</h1>
2
3 <table>
4   <tr>
5     <th>speach balloon</th>
6     <th>system_picture</th>
7     <th>Tail</th>
8     <th>size</th>
9     <th>MinWidth</th>
10     <th>MinHeight</th>
11     <th>MaxWidth</th>
12     <th>MaxHeight</th>
13   </tr>
14
15 <% @balloon_templates.each do |balloon_template| %>
16   <tr>
17     <td><%= balloon_template.speach_balloon_id %></td>
18     <td><%= balloon_template.system_picture_id %></td>
19     <td><%= balloon_template.tail %></td>
20     <td><%= balloon_template.size %></td>
21     <td><%= balloon_template.min_width %></td>
22     <td><%= balloon_template.min_height %></td>
23     <td><%= balloon_template.max_width %></td>
24     <td><%= balloon_template.max_height %></td>
25   </tr>
26 <% end %>
27 </table>