Sha256: e52bcf0a57d5887b381c744d5c3444f6c6a959f0ecd185c2225e112c3cfbf6da
Contents?: true
Size: 387 Bytes
Versions: 17
Compression:
Stored size: 387 Bytes
Contents
<h1>Listing posts</h1> <table> <tr> <th></th> <th></th> <th></th> </tr> <% @posts.each do |post| %> <tr> <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
17 entries across 17 versions & 3 rubygems