docbrown/app/views/articles/delete_confirm.html.erb
2018-08-09 13:21:34 -04:00

11 lines
457 B
Text

<%= javascript_include_tag 'application' %>
<div class="container delete-confirm">
<h4><%= @article.title %></h4>
<h1>Are you sure you want to delete this article?</h1>
<h2>You cannot undo this action, perhaps you just want to <a data-no-instant href="<%= @article.path %>/edit">unpublish</a> instead?</h2>
<h2><a class="delete-link" data-no-instant rel="nofollow" data-method="delete" href="/articles/<%= @article.id %>">DELETE</a></h2>
</div>