Blob of app/views/projects/confirm_delete.html.erb (raw blob data)

1 <h1>Please confirm deletion of <%= h(@project.title) -%></h1>
2
3 <p class="important_message">
4 Once you press this button the project will be deleted
5
6 <% form_for @project, :html => {:method => :delete} do |f| -%>
7 <%= f.submit("YES I am sure I want to delete this project permanently") -%>
8 <% end -%>
9 </p>
10
11 <% content_for :submenu do -%>
12 <li class="selected"><%= link_to "Edit project", edit_project_path(@project) -%></li>
13 <% end -%>
14
15 <% content_for :sidebar do -%>
16 <ul class="links">
17 <li><%= link_to "Back to edit screen", edit_project_path(@project) -%></li>
18 </ul>
19 <% end -%>