comparison app/views/projects/.svn/text-base/destroy.rhtml.svn-base @ 22:40f7cfd4df19

* Update to SVN trunk rev 4173
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Fri, 24 Sep 2010 14:06:04 +0100
parents 513646585e45
children
comparison
equal deleted inserted replaced
14:1d32c0a0efbf 22:40f7cfd4df19
6 <% if @project_to_destroy.descendants.any? %> 6 <% if @project_to_destroy.descendants.any? %>
7 <br /><%= l(:text_subprojects_destroy_warning, content_tag('strong', h(@project_to_destroy.descendants.collect{|p| p.to_s}.join(', ')))) %> 7 <br /><%= l(:text_subprojects_destroy_warning, content_tag('strong', h(@project_to_destroy.descendants.collect{|p| p.to_s}.join(', ')))) %>
8 <% end %> 8 <% end %>
9 </p> 9 </p>
10 <p> 10 <p>
11 <% form_tag({:controller => 'projects', :action => 'destroy', :id => @project_to_destroy}) do %> 11 <% form_tag(project_path(@project_to_destroy), :method => :delete) do %>
12 <label><%= check_box_tag 'confirm', 1 %> <%= l(:general_text_Yes) %></label> 12 <label><%= check_box_tag 'confirm', 1 %> <%= l(:general_text_Yes) %></label>
13 <%= submit_tag l(:button_delete) %> 13 <%= submit_tag l(:button_delete) %>
14 <% end %> 14 <% end %>
15 </p> 15 </p>
16 </div> 16 </div>