Sha256: fb4c565edb1c8a5dcfd0cc9d8178061ae1f6ef0b02f6831f2500d92115f9d165
Contents?: true
Size: 645 Bytes
Versions: 22
Compression:
Stored size: 645 Bytes
Contents
<h1>Listing posts</h1> <table> <thead> <tr> <th>Name</th> <th>Title</th> <th>Content</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @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, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Post', new_post_path %>
Version data entries
22 entries across 22 versions & 1 rubygems