otwarchive-symphonyarchive/app/views/inbox/_read_form.html.erb
2026-03-11 22:22:11 +00:00

6 lines
323 B
Text

<% # expects inbox_comment and current_user %>
<%= form_tag user_inbox_path(current_user), method: 'put', class: 'ajax-remove' do %>
<%= hidden_field_tag 'read', true %>
<%= hidden_field_tag 'inbox_comments[]', inbox_comment.id, id: "inbox_comments_#{inbox_comment.id}" %>
<%= submit_tag ts('Mark Read') %>
<% end %>