docbrown/app/views/comments/delete_confirm.html.erb

12 lines
446 B
Text

<div class="container delete-confirm">
<h4><%= truncate(sanitize(@comment.processed_html, tags: []), length: 80) %></h4>
<h1>Are you sure you want to delete this comment?</h1>
<h2>You cannot undo this action, perhaps you just want to
<a data-no-instant href="<%= @comment.path %>/edit">EDIT</a> instead?</h2>
<%= form_tag "/comments/#{@comment.id}", method: :delete do %>
<button class="cta">DELETE</button>
<% end %>
</div>