Page Delete Confirmation

<%= _('Are you sure you want to delete the page titled "%s"?') % content_tag('strong', @page.title) %>

<% unless @page.children.empty? %>

<%= _("It has %s child pages that will also be deleted...") % content_tag('strong', @page.children.length) %>

<% end %>
<%= start_form_tag %>
<%= submit_tag _("Yes, Delete The Page") %> or <%= link_to _("Cancel"), :action=>'index' %>
<%= end_form_tag %>