##// END OF EJS Templates
Raise the height of text custom fields....
Raise the height of text custom fields. git-svn-id: http://svn.redmine.org/redmine/trunk@16252 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15212:12c904e891c5
r15870:8e4cb42f8e06
Show More
destroy.html.erb
24 lines | 691 B | text/plain | TextLexer
Jean-Philippe Lang
Adds missing html titles (#14517)....
r11820 <%= title l(:label_confirmation) %>
Jean-Philippe Lang
Moves the submit button out the div....
r15212 <%= 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 <div class="warning">
Jean-Philippe Lang
Moves the submit button out the div....
r15212 <p><strong><%=h @project_to_destroy %></strong></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Moves the submit button out the div....
r15212 <p>
<%=l(:text_project_destroy_confirmation)%>
Jean-Philippe Lang
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <% if @project_to_destroy.descendants.any? %>
Jean-Philippe Lang
Moves the submit button out the div....
r15212 <br />
<%= l(:text_subprojects_destroy_warning,
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 content_tag('strong', @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
Moves the submit button out the div....
r15212 <label><%= check_box_tag 'confirm', 1 %> <%= l(:general_text_Yes) %></label>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </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>
Jean-Philippe Lang
Moves the submit button out the div....
r15212
<p>
<%= submit_tag l(:button_delete) %>
<%= link_to l(:button_cancel), :controller => 'admin', :action => 'projects' %>
</p>
<% end %>