<%= ts("Edit Multiple Works") %>
<%= render "users/header_navigation" %>
<%= ts("Your edits will be applied to") %> <%= ts("all") %> <%= ts("of the following works:") %>
<%= render "works/work_abbreviated_list", works: @works %>
<%= form_for :work, url: update_multiple_user_works_path(@user), method: :patch, html: { class: "verbose post" } do |form| %>
<%= ts("* Required information") %>
<% @works.each do |work| %>
<%= hidden_field_tag "work_ids[]", work.id %>
<% end %>
<%= render "work_form_tags", include_blank: true %>
<%= ts("Your edits will") %> <%= ts("replace") %> <%= ts("the existing values!
(If you leave a field blank it will remain unchanged.)") %>
<%= submit_tag ts("Update All Works"), data: { confirm: ts("Are you sure? Remember this will replace all existing values!") } %>
<% end %>