Sha256: 8070e99d57ea00324c66a176161f853fedcc2df909f4329decce814ffa95a609
Contents?: true
Size: 639 Bytes
Versions: 2
Compression:
Stored size: 639 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Comments</h1> <table> <thead> <tr> <th>Content</th> <th>Post</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @comments.each do |comment| %> <tr> <td><%= comment.content %></td> <td><%= comment.post_id %></td> <td><%= link_to 'Show', comment %></td> <td><%= link_to 'Edit', edit_comment_path(comment) %></td> <td><%= link_to 'Destroy', comment, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Comment', new_comment_path %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hashids_rails-0.0.2 | test/dummy/app/views/comments/index.html.erb |
hashids_rails-0.0.1 | test/dummy/app/views/comments/index.html.erb |