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