Sha256: d147f28b10fbc961a4cd8935a35eadda36b90dd000dd77d3ed2b80a9d2f3a17b
Contents?: true
Size: 485 Bytes
Versions: 43
Compression:
Stored size: 485 Bytes
Contents
<h1>Listing posts</h1> <table> <tr> <th>Title</th> <th>Body</th> <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, confirm: 'Are you sure?', method: :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Post', new_post_path %>
Version data entries
43 entries across 43 versions & 7 rubygems