comparison .svn/pristine/c3/c337c1d71535f0f645a5577b10e1a55ce3ca183c.svn-base @ 1464:261b3d9a4903 redmine-2.4

Update to Redmine 2.4 branch rev 12663
author Chris Cannam
date Tue, 14 Jan 2014 14:37:42 +0000
parents
children
comparison
equal deleted inserted replaced
1296:038ba2d95de8 1464:261b3d9a4903
1 <%= title l(:label_confirmation) %>
2
3 <div class="warning">
4 <p><strong><%=h @project_to_destroy %></strong><br />
5 <%=l(:text_project_destroy_confirmation)%>
6
7 <% if @project_to_destroy.descendants.any? %>
8 <br /><%= l(:text_subprojects_destroy_warning,
9 content_tag('strong', h(@project_to_destroy.descendants.collect{|p| p.to_s}.join(', ')))).html_safe %>
10 <% end %>
11 </p>
12 <p>
13 <%= form_tag(project_path(@project_to_destroy), :method => :delete) do %>
14 <label><%= check_box_tag 'confirm', 1 %> <%= l(:general_text_Yes) %></label>
15 <%= submit_tag l(:button_delete) %>
16 <%= link_to l(:button_cancel), :controller => 'admin', :action => 'projects' %>
17 <% end %>
18 </p>
19 </div>