docbrown/app/views/comments/delete_confirm.html.erb
2018-02-28 16:11:08 -05:00

11 lines
505 B
Text

<%= javascript_include_tag 'application' %>
<div class="container delete-confirm">
<h4><%= truncate(strip_tags(@comment.processed_html.html_safe), length: 80) %></h4>
<h1>Are you sure you want to delete this comment?</h2>
<h2>You cannot undo this action, perhaps you just want to <a data-no-instant href="<%= @comment.path %>/edit">EDIT</a> instead?</h2>
<h2><a class="delete-link" data-no-instant rel="nofollow" data-method="delete" href="/comments/<%= @comment.id %>">DELETE</a></h2>
</div>