Sha256: db8523c2a1adbc7df7a3fcf3b8851b300e2f4dc99b5609ec865496c6a0cb256e
Contents?: true
Size: 540 Bytes
Versions: 23
Compression:
Stored size: 540 Bytes
Contents
<h1>Listing posts</h1> <table> <tr> <th>Name</th> <th>Title</th> <th>Content</th> <th></th> <th></th> <th></th> </tr> <% @posts.each do |post| %> <tr> <td><%= post.id %></td> <td><%= post.name %></td> <td><%= post.title %></td> <td><%= link_to 'Show', post %></td> <td><%= link_to 'Edit', edit_post_path(post) %></td> <td><%= link_to 'Destroy', post, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Post', new_post_path %>
Version data entries
23 entries across 23 versions & 2 rubygems