<%= error_messages_for 'page' %> <% resource = ::API::V3::WikiPages::WikiPageRepresenter.new(@page, current_user: current_user, embed_links: true) %> <%= f.fields_for :page, @page do |page_form| %> <%= editable_toolbar(form: page_form, field_name: :title) do %>
  • <% end %> <% end %>
    <%= f.text_area :text, cols: 100, rows: 25, class: 'wiki-edit', accesskey: accesskey(:edit), with_text_formatting: true, resource: resource, label_options: { class: 'hidden-for-sighted' }, preview_context: preview_context(@page, @project) %>
    <%= f.fields_for :page, @page do |page_fields| %> <%= page_fields.hidden_field :parent_id %> <%= page_fields.select :parent_id, wiki_page_options_for_select(@wiki.pages), { label: WikiPage.human_attribute_name(:parent_title), include_blank: false }, { class: "parent-select form--select" } %> <% end%>
    <%= f.text_field :comments, class: '-border-on-hover-only -hide-placeholder-on-focus', label_options: { class: 'hidden-for-sighted' }, autocomplete: 'off', container_class: '-wide', placeholder: t(:text_what_did_you_change_click_to_add_comment) %>
    <%= f.button t(:button_save), class: 'button -highlight -with-icon icon-checkmark' %> <%= link_to t(:button_cancel), { controller: '/wiki', action: 'show', project_id: @project, id: (@page.new_record? ? nil : @page) }, data: { confirm: t(:text_are_you_sure) }, class: 'button -with-icon icon-cancel' %>