otwarchive-symphonyarchive/app/views/inbox/_delete_form.html.erb

7 lines
322 B
Text
Raw Permalink Normal View History

2026-03-11 22:22:11 +00:00
<% # expects inbox_comment and current_user %>
<%= form_tag user_inbox_path(current_user), method: 'put', class: 'ajax-remove' do %>
<%= hidden_field_tag 'delete', true %>
<%= hidden_field_tag 'inbox_comments[]', inbox_comment.id, id: "inbox_comments_#{inbox_comment.id}" %>
<%= submit_tag ts('Delete') %>
<% end %>