OSDN Git Service

09ba60b2ebfc4d4e737b37f5931174079ba33b10
[pettanr/pettanr.git] / app / views / speach_balloons / index.html.erb
1 <h1>Listing speach_balloons</h1>
2 <table>
3   <tr>
4     <th>Name</th>
5     <th>Tail limit</th>
6     <th>size limit</th>
7     <th>t</th>
8     <th></th>
9     <th></th>
10   </tr>
11
12 <% @speach_balloons.each do |speach_balloon| %>
13   <tr>
14     <td><%= h speach_balloon.name %></td>
15     <td><%= speach_balloon.tail_count %></td>
16     <td><%= speach_balloon.size_count %></td>
17     <td><%= speach_balloon.t %></td>
18     <td><%= link_to 'show', speach_balloon %></td>
19     <td>
20       <% if admin_signed_in? -%>
21         <%= link_to 'Destroy', speach_balloon, confirm: 'Are you sure?', method: :delete %>
22       <% end -%>
23     </td>
24   </tr>
25 <% end %>
26 </table>