OSDN Git Service

t#32046:
[pettanr/pettanr.git] / app / views / stories / list.html.erb
1 <h1>Listing Story</h1>
2
3 <table>
4   <tr>
5     <th>id</th>
6     <th>comic_id</th>
7     <th>panel_id</th>
8     <th>t</th>
9     <th>author_id</th>
10     <th>created_at</th>
11     <th>updated_at</th>
12     <th></th>
13   </tr>
14
15 <%  @stories.each do |story| %>
16   <tr>
17     <td><%= link_to story.id, :action => :browse, :id => story.id %></td>
18     <td><%= story.comic_id %></td>
19     <td><%= story.panel_id %></td>
20     <td><%= story.t %></td>
21     <td><%= link_to story.author_id, :controller => '/authors', :action => :browse, :id => story.author_id %></td>
22     <td><%= story.created_at %></td>
23     <td><%= story.updated_at %></td>
24     <td>
25     </td>
26   </tr>
27 <% end %>
28 </table>
29