hello-learning/blog/app/views/comments/_comment.html.erb
2019-08-06 22:50:19 -05:00

14 lines
307 B
Text

<p>
<strong>Commenter:</strong>
<%= comment.commenter %>
</p>
<p>
<strong>Comment:</strong>
<%= comment.body %>
</p>
<%= link_to 'Destroy Comment', [comment.article, comment],
method: :delete,
data: { confirm: 'Are you sure?' } %>