destroy.html.erb
24 lines
| 691 B
| text/plain
|
TextLexer
|
r11820 | <%= title l(:label_confirmation) %> | ||
|
r15212 | <%= form_tag(project_path(@project_to_destroy), :method => :delete) do %> | ||
|
r1344 | <div class="warning"> | ||
|
r15212 | <p><strong><%=h @project_to_destroy %></strong></p> | ||
|
r330 | |||
|
r15212 | <p> | ||
<%=l(:text_project_destroy_confirmation)%> | ||||
|
r2302 | <% if @project_to_destroy.descendants.any? %> | ||
|
r15212 | <br /> | ||
<%= l(:text_subprojects_destroy_warning, | ||||
|
r13661 | content_tag('strong', @project_to_destroy.descendants.collect{|p| p.to_s}.join(', '))).html_safe %> | ||
|
r1344 | <% end %> | ||
</p> | ||||
|
r330 | <p> | ||
|
r15212 | <label><%= check_box_tag 'confirm', 1 %> <%= l(:general_text_Yes) %></label> | ||
|
r330 | </p> | ||
|
r1344 | </div> | ||
|
r15212 | |||
<p> | ||||
<%= submit_tag l(:button_delete) %> | ||||
<%= link_to l(:button_cancel), :controller => 'admin', :action => 'projects' %> | ||||
</p> | ||||
<% end %> | ||||