Sha256: adbc8ab2e12298e94109da0a57db9427ecfc96c67aab089cb632e754802a71bb
Contents?: true
Size: 726 Bytes
Versions: 5
Compression:
Stored size: 726 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Comments</h1> <table> <thead> <tr> <th>Banal brainstorm</th> <th>Comment text</th> <th>Parent</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @comments.each do |comment| %> <tr> <td><%= comment.banal_brainstorm %></td> <td><%= comment.comment_text %></td> <td><%= comment.parent_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
5 entries across 5 versions & 4 rubygems