<%= ts("Delete Chapter") %>

<%= form_for(@chapter, :html => {:method => :delete, :class => "simple destroy"}) do |f| %>

<%= ts("Are you sure you want to delete %{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 %>

<%= f.submit ts("Yes, Delete Chapter") %>

<% end %>