Redmine/redmine/app/views/projects/destroy.rhtml
Jean-Philippe Lang 6b7650e2f0 Initial commit
git-svn-id: http://redmine.rubyforge.org/svn/trunk@4 e93f8b46-1217-0410-a6f0-8f06a7374b81
2006-06-28 18:11:03 +00:00

12 lines
385 B
Plaintext

<h2><%=_('Confirmation')%></h2>
<div class="box">
<center>
<p><%=_('Are you sure you want to delete project')%> <strong><%= @project.name %></strong> ?</p>
<p>
<%= start_form_tag({:controller => 'projects', :action => 'destroy', :id => @project}) %>
<%= hidden_field_tag "confirm", 1 %>
<%= submit_tag _('Delete') %>
<%= end_form_tag %>
</p>
</center>
</div>