otwarchive-symphonyarchive/app/views/collections/confirm_delete.html.erb

12 lines
586 B
Text
Raw Normal View History

2026-03-11 22:22:11 +00:00
<!--Descriptive page name, messages and instructions-->
<h2 class="heading"><%= ts("Delete Collection") %></h2>
<!--main content-->
<%= form_for(@collection, :html => {:method => :delete, :class => "simple destroy"}) do |f| %>
<p class="caution notice"><%= ts("Are you sure you want to <strong><em>delete</em></strong> the collection %{collection_name}? All collection settings will be lost. (Works will not be deleted.)", :collection_name => @collection.title).html_safe %></p>
<p class="actions">
<%= f.submit ts("Yes, Delete Collection") %>
</p>
<% end %>
<!--/content-->