2011-07-04 23:56:38 +04:00
|
|
|
<%= wiki_page_breadcrumb(@page) %>
|
|
|
|
|
2009-04-21 16:19:56 +04:00
|
|
|
<h2><%=h @page.pretty_title %></h2>
|
|
|
|
|
2012-04-25 21:17:49 +04:00
|
|
|
<%= form_tag({}, :method => :delete) do %>
|
2009-04-21 16:19:56 +04:00
|
|
|
<div class="box">
|
|
|
|
<p><strong><%= l(:text_wiki_page_destroy_question, :descendants => @descendants_count) %></strong></p>
|
|
|
|
<p><label><%= radio_button_tag 'todo', 'nullify', true %> <%= l(:text_wiki_page_nullify_children) %></label><br />
|
|
|
|
<label><%= radio_button_tag 'todo', 'destroy', false %> <%= l(:text_wiki_page_destroy_children) %></label>
|
|
|
|
<% if @reassignable_to.any? %>
|
|
|
|
<br />
|
|
|
|
<label><%= radio_button_tag 'todo', 'reassign', false %> <%= l(:text_wiki_page_reassign_children) %></label>:
|
2011-10-29 05:24:11 +04:00
|
|
|
<%= label_tag "reassign_to_id", l(:description_wiki_subpages_reassign), :class => "hidden-for-sighted" %>
|
2009-04-21 16:19:56 +04:00
|
|
|
<%= select_tag 'reassign_to_id', wiki_page_options_for_select(@reassignable_to),
|
2012-07-22 17:29:26 +04:00
|
|
|
:onclick => "$('#todo_reassign').attr('checked', true);" %>
|
2009-04-21 16:19:56 +04:00
|
|
|
<% end %>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= submit_tag l(:button_apply) %>
|
2010-10-27 20:27:06 +04:00
|
|
|
<%= link_to l(:button_cancel), :controller => 'wiki', :action => 'show', :project_id => @project, :id => @page.title %>
|
2009-04-21 16:19:56 +04:00
|
|
|
<% end %>
|