otwarchive-symphonyarchive/app/views/chapters/confirm_delete.html.erb
2026-03-11 22:22:11 +00:00

12 lines
622 B
Text

<!--Descriptive page name, messages and instructions-->
<h2 class="heading"><%= ts("Delete Chapter") %></h2>
<!--main content-->
<%= form_for(@chapter, :html => {:method => :delete, :class => "simple destroy"}) do |f| %>
<p class="caution notice"><%= ts("Are you sure you want to <strong><em>delete</em></strong> %{chapter_number} of %{work_title}? This will delete all comments on the chapter as well and cannot be undone!", :chapter_number => @chapter.chapter_header, :work_title => @work.title).html_safe %>
</p>
<p class="actions">
<%= f.submit ts("Yes, Delete Chapter") %>
</p>
<% end %>
<!--/content-->