OSDN Git Service

t#32025:comic rename
[pettanr/pettanr.git] / app / views / stories / list.html.erb
diff --git a/app/views/stories/list.html.erb b/app/views/stories/list.html.erb
deleted file mode 100644 (file)
index 6fae81c..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<h1>Listing Story</h1>
-
-<table>
-  <tr>
-    <th>id</th>
-    <th>comic_id</th>
-    <th>panel_id</th>
-    <th>t</th>
-    <th>author_id</th>
-    <th>created_at</th>
-    <th>updated_at</th>
-    <th></th>
-  </tr>
-
-<%  @stories.each do |story| %>
-  <tr>
-    <td><%= link_to story.id, :action => :browse, :id => story.id %></td>
-    <td><%= story.comic_id %></td>
-    <td><%= story.panel_id %></td>
-    <td><%= story.t %></td>
-    <td><%= link_to story.author_id, :controller => '/authors', :action => :browse, :id => story.author_id %></td>
-    <td><%= story.created_at %></td>
-    <td><%= story.updated_at %></td>
-    <td>
-    </td>
-  </tr>
-<% end %>
-</table>
-