##// END OF EJS Templates
Bulgarian translation updated by Ivan Cenov (#12254)...
Bulgarian translation updated by Ivan Cenov (#12254) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10766 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9900:8ed4620bb9e7
r10544:cb7ab9bc0ca1
Show More
destroy.html.erb
17 lines | 607 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) %>
<% 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>