Files
dunlop-ember/spec/dummy/app/views/comments/index.html.slim
T
2017-12-21 11:36:52 +01:00

26 lines
480 B
Plaintext

h1 Listing comments
table
thead
tr
th User
th Post
th Body
th
th
th
tbody
- @comments.each do |comment|
tr
td = comment.user_id
td = comment.post_id
td = comment.body
td = link_to 'Show', comment
td = link_to 'Edit', edit_comment_path(comment)
td = link_to 'Destroy', comment, data: { confirm: 'Are you sure?' }, method: :delete
br
= link_to 'New Comment', new_comment_path