OSDN Git Service

speach rename to speech
[pettanr/pettanr.git] / app / views / speech_balloon_templates / list.html.erb
1 <h1>Listing speech_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 <% @speech_balloons.each do |speech_balloon| %>
15   <tr>
16     <td><%= link_to speech_balloon.id, :action => :browse, :id => speech_balloon.id %></td>
17     <td><%= h speech_balloon.name %></td>
18     <td><%= speech_balloon.tail_count %></td>
19     <td><%= speech_balloon.size_count %></td>
20     <td><%= speech_balloon.t %></td>
21     <td><%= speech_balloon.created_at %></td>
22     <td><%= speech_balloon.updated_at %></td>
23     <td>
24       <%= link_to 'Destroy', speech_balloon, confirm: 'Are you sure?', method: :delete %>
25     </td>
26   </tr>
27 <% end %>
28 </table>