OSDN Git Service

33f07bfd0477ace15a035b1907143464eab946b8
[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>width</th>
8     <th>height</th>
9     <th>visible</th>
10     <th>editable</th>
11     <th>author_id</th>
12     <th>created_at</th>
13     <th>updated_at</th>
14     <th></th>
15   </tr>
16
17 <% @comics.each do |comic| %>
18   <tr>
19     <td><%= link_to comic.id, :action => :browse, :id => comic.id %></td>
20     <td><%= h comic.title %></td>
21     <td><%= comic.width %></td>
22     <td><%= comic.height %></td>
23     <td><%= comic.visible %></td>
24     <td><%= comic.editable %></td>
25     <td><%= link_to comic.author_id, :controller => '/comics', :action => :browse, :id => comic.author_id %></td>
26     <td><%= comic.created_at %></td>
27     <td><%= comic.updated_at %></td>
28     <td>
29       <%= link_to 'Destroy', comic, confirm: 'Are you sure?', method: :delete %>
30     </td>
31   </tr>
32 <% end %>
33 </table>
34