OSDN Git Service

test update
[pettanr/pettanr.git] / app / views / speach_balloon_templates / list.html.erb
1 <h1>Listing speach_balloons</h1>
2 <table>
3   <tr>
4     <th>id</th>
5     <th>Name</th>
6     <th>Tail count</th>
7     <th>size count</th>
8     <th>t</th>
9     <th>created_at</th>
10     <th>updated_at</th>
11     <th></th>
12   </tr>
13
14 <% @speach_balloons.each do |speach_balloon| %>
15   <tr>
16     <td><%= link_to speach_balloon.id, :action => :browse, :id => speach_balloon.id %></td>
17     <td><%= h speach_balloon.name %></td>
18     <td><%= speach_balloon.tail_count %></td>
19     <td><%= speach_balloon.size_count %></td>
20     <td><%= speach_balloon.t %></td>
21     <td><%= speach_balloon.created_at %></td>
22     <td><%= speach_balloon.updated_at %></td>
23     <td>
24       <%= link_to 'Destroy', speach_balloon, confirm: 'Are you sure?', method: :delete %>
25     </td>
26   </tr>
27 <% end %>
28 </table>