kissingcomputer/app/views/comments/_comment.html.erb
2026-01-10 16:17:07 +00:00

21 lines
503 B
Text

<hr><p>
<strong>Name:</strong>
<%= comment.commenter %>
</p>
<% if comment.website.present? %>
<p> <strong>Website:</strong>
<%= comment.website %>
</p>
<% end %>
<p>
<strong>Comment:</strong>
<%= comment.body %> </p>
<% if current_user %>
<%= link_to "Destroy Comment",
member_blog_post_comment_path(@member, @blog, @post, comment),
data: { turbo_method: :delete, turbo_confirm: "Are you sure?" } %>
<% end %>
<hr>