Sha256: d4bc22c24e970369d465a295eefcba550a14aa71460cbd0cd9aa998a16c02bc3
Contents?: true
Size: 424 Bytes
Versions: 8
Compression:
Stored size: 424 Bytes
Contents
<h1>Listing posts</h1> <table> <tr> <th></th> <th></th> <th></th> </tr> <% posts.each do |post| %> <tr> <td><%= post.title %></td> <td><%= post.body %></td> <td><%= link_to 'Show', post %></td> <td><%= link_to 'Edit', edit_post_path(post) %></td> <td><%= link_to 'Destroy', post, :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Post', new_post_path %>
Version data entries
8 entries across 8 versions & 1 rubygems