To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / projects / destroy.html.erb @ 1591:63650ae64bf2

History | View | Annotate | Download (691 Bytes)

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>