<%= form_with url: node_translation_path(@node, @locale), method: :patch, local: true, id: "translation_edit_form",
data: { autosave_url: autosave_node_translation_path(@node, @locale), show_url: node_path(@node) } do |f| %>
<%= Page.human_attribute_name(:title) %>
<%= text_field_tag "page[title]", @translation&.title %>
<%= Page.human_attribute_name(:abstract) %>
<%= text_area_tag "page[abstract]", @translation&.abstract %>
<%= Page.human_attribute_name(:body) %>
<%= text_area_tag "page[body]", @translation&.body, :class => 'with_editor' %>