OSDN Git Service

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