Sha256: 69df2b9401ede4349f0f79c9052fbd44e30ae7031d649ed31a2c61bd9b01ad58
Contents?: true
Size: 539 Bytes
Versions: 160
Compression:
Stored size: 539 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.name %></td> <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, confirm: 'Are you sure?', method: :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Post', new_post_path %>
Version data entries
160 entries across 121 versions & 19 rubygems