Files
fizzy/app/views/collections/edit/_delete.html.erb
T
2025-10-22 13:49:23 -07:00

9 lines
415 B
Plaintext

<% if Current.user.collections.many? %>
<%= form_with model: collection, class: "txt-align-center margin-block-start-auto", method: :delete do |form| %>
<%= form.button class: "btn txt-negative borderless txt-small", data: { turbo_confirm: "Are you sure you want to permanently delete this board?" } do %>
<%= icon_tag "trash" %>
<span>Delete this board</span>
<% end %>
<% end %>
<% end %>