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