##// END OF EJS Templates
fix test name (#13482)...
fix test name (#13482) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11722 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11432:064bb49b5598
r11492:1bdd37f3e056
Show More
destroy.html.erb
18 lines | 691 B | text/plain | TextLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%=l(:label_confirmation)%></h2>
Jean-Philippe Lang
Warn user that subprojects are also deleted when deleting a project (#1111) and add a checkbox to confirm the deletion....
r1344 <div class="warning">
<p><strong><%=h @project_to_destroy %></strong><br />
<%=l(:text_project_destroy_confirmation)%>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <% if @project_to_destroy.descendants.any? %>
Toshi MARUYAMA
fix confirmation page has broken HTML when a project folding sub project is deleted (#11511)...
r9900 <br /><%= l(:text_subprojects_destroy_warning,
content_tag('strong', h(@project_to_destroy.descendants.collect{|p| p.to_s}.join(', ')))).html_safe %>
Jean-Philippe Lang
Warn user that subprojects are also deleted when deleting a project (#1111) and add a checkbox to confirm the deletion....
r1344 <% end %>
</p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag(project_path(@project_to_destroy), :method => :delete) do %>
Jean-Philippe Lang
Warn user that subprojects are also deleted when deleting a project (#1111) and add a checkbox to confirm the deletion....
r1344 <label><%= check_box_tag 'confirm', 1 %> <%= l(:general_text_Yes) %></label>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= submit_tag l(:button_delete) %>
Jean-Philippe Lang
Add a "Cancel" button to the "Delete" project page when deleting a project (#2795)....
r11432 <%= link_to l(:button_cancel), :controller => 'admin', :action => 'projects' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
</p>
Jean-Philippe Lang
Warn user that subprojects are also deleted when deleting a project (#1111) and add a checkbox to confirm the deletion....
r1344 </div>