OSDN Git Service

696809ee55410f83fae595099c4de5fa0bfe7eda
[pettanr/pettanr.git] / app / views / comics / top.html.erb
1 <h1><%= link_to '新着', comics_path %></h1>
2
3 <table>
4   <tr>
5     <th>Title</th>
6     <th>editable</th>
7     <th>author_id</th>
8     <th>updated_at</th>
9     <th></th>
10   </tr>
11
12 <% @comics.each do |comic| %>
13   <tr>
14     <td><%= link_to h(comic.title), :action => :play, :id => comic.id %></td>
15     <td><%= comic.editable %></td>
16     <td><%= comic.author_id%></td>
17     <td><%= comic.updated_at %></td>
18     <td>
19       <% if author_signed_in? -%>
20         <% if comic.own? current_author -%>
21           <%= link_to 'Destroy', comic, confirm: 'Are you sure?', method: :delete %>
22         <% end -%>
23       <% end -%>
24     </td>
25   </tr>
26 <% end %>
27 </table>
28 <h1>人気</h1>
29