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

14 lines
398 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 Skin") %></h2>
<!--main content-->
<%= form_for(@skin, html: { method: :delete, class: "simple destroy" }) do |f| %>
<p class="caution notice">
<%= t(".confirm_html", skin_title: @skin.title) %>
</p>
<p class="actions">
<%= f.submit ts("Yes, Delete Skin") %>
</p>
<% end %>
<!--/content-->