OSDN Git Service

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