annotate .svn/pristine/87/8755b7cb985a4f9d801e46a233fcd3dca9bd6653.svn-base @ 1298:4f746d8966dd redmine_2.3_integration

Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author Chris Cannam
date Fri, 14 Jun 2013 09:28:30 +0100
parents 622f24f53b42
children
rev   line source
Chris@1295 1 <h2><%=l(:label_confirmation)%></h2>
Chris@1295 2 <div class="warning">
Chris@1295 3 <p><strong><%=h @project_to_destroy %></strong><br />
Chris@1295 4 <%=l(:text_project_destroy_confirmation)%>
Chris@1295 5
Chris@1295 6 <% if @project_to_destroy.descendants.any? %>
Chris@1295 7 <br /><%= l(:text_subprojects_destroy_warning,
Chris@1295 8 content_tag('strong', h(@project_to_destroy.descendants.collect{|p| p.to_s}.join(', ')))).html_safe %>
Chris@1295 9 <% end %>
Chris@1295 10 </p>
Chris@1295 11 <p>
Chris@1295 12 <%= form_tag(project_path(@project_to_destroy), :method => :delete) do %>
Chris@1295 13 <label><%= check_box_tag 'confirm', 1 %> <%= l(:general_text_Yes) %></label>
Chris@1295 14 <%= submit_tag l(:button_delete) %>
Chris@1295 15 <% end %>
Chris@1295 16 </p>
Chris@1295 17 </div>