2013-07-28 11:50:18 +00:00
|
|
|
<%= title l(:label_confirmation) %>
|
|
|
|
|
2008-04-26 10:20:48 +00:00
|
|
|
<div class="warning">
|
|
|
|
<p><strong><%=h @project_to_destroy %></strong><br />
|
|
|
|
<%=l(:text_project_destroy_confirmation)%>
|
2007-03-12 17:59:02 +00:00
|
|
|
|
2009-01-24 11:31:15 +00:00
|
|
|
<% if @project_to_destroy.descendants.any? %>
|
2012-07-26 23:45:17 +00:00
|
|
|
<br /><%= l(:text_subprojects_destroy_warning,
|
|
|
|
content_tag('strong', h(@project_to_destroy.descendants.collect{|p| p.to_s}.join(', ')))).html_safe %>
|
2008-04-26 10:20:48 +00:00
|
|
|
<% end %>
|
|
|
|
</p>
|
2007-03-12 17:59:02 +00:00
|
|
|
<p>
|
2012-04-25 17:17:49 +00:00
|
|
|
<%= form_tag(project_path(@project_to_destroy), :method => :delete) do %>
|
2008-04-26 10:20:48 +00:00
|
|
|
<label><%= check_box_tag 'confirm', 1 %> <%= l(:general_text_Yes) %></label>
|
2007-03-12 17:59:02 +00:00
|
|
|
<%= submit_tag l(:button_delete) %>
|
2013-03-19 21:19:46 +00:00
|
|
|
<%= link_to l(:button_cancel), :controller => 'admin', :action => 'projects' %>
|
2007-03-12 17:59:02 +00:00
|
|
|
<% end %>
|
|
|
|
</p>
|
2008-04-26 10:20:48 +00:00
|
|
|
</div>
|