otwarchive-sunsetarchive/app/views/inbox/_delete_form.html.erb
2026-03-17 01:16:49 -04:00

6 lines
322 B
Text
Executable file

<% # 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 %>