Sha256: e135dc24dad95835dc851ca5518aeda99f4db6f2ca74d8369d48eb2935a6250c
Contents?: true
Size: 447 Bytes
Versions: 23
Compression:
Stored size: 447 Bytes
Contents
<h1>Listing posts</h1> <table> <tr> <th>Title</th> <th></th> <th></th> <th></th> </tr> <% @posts.each do |post| %> <tr> <td><%= post.title %></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
23 entries across 23 versions & 3 rubygems