Sha256: d4d01bba3c4f37762523c486bebadbaf242f8e9569db344bcbe78552048d86e5
Contents?: true
Size: 591 Bytes
Versions: 20
Compression:
Stored size: 591 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Posts</h1> <table> <thead> <tr> <th>Title</th> <th>Body</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @posts.each do |post| %> <tr> <td><%= post.title %></td> <td><%= post.body %></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
20 entries across 14 versions & 1 rubygems