OSDN Git Service

t#29312:any update
[pettanr/pettanr.git] / app / views / comics / list.html.erb
1 <h1>Listing comics</h1>
2
3 <table>
4   <tr>
5     <th>id</th>
6     <th>Title</th>
7     <th>visible</th>
8     <th>author_id</th>
9     <th>created_at</th>
10     <th>updated_at</th>
11     <th></th>
12   </tr>
13
14 <% @comics.each do |comic| %>
15   <tr>
16     <td><%= link_to comic.id, :action => :browse, :id => comic.id %></td>
17     <td><%= h comic.title %></td>
18     <td><%= comic.visible %></td>
19     <td><%= link_to comic.author_id, :controller => '/authors', :action => :browse, :id => comic.author_id %></td>
20     <td><%= comic.created_at %></td>
21     <td><%= comic.updated_at %></td>
22     <td>
23       <%= link_to 'Destroy', comic, confirm: 'Are you sure?', method: :delete %>
24     </td>
25   </tr>
26 <% end %>
27 </table>
28