- content_for(:root_class, 'scroll-margins-for-sticky-footer')

= render partial: 'new_administrateur/breadcrumbs',
  locals: { steps: [link_to('Démarches', admin_procedures_path),
                    link_to(@procedure.libelle, admin_procedure_path(@procedure)),
                    'Description'] }
.procedure-form
  .procedure-form__columns.container
    = form_for @procedure,
      url: url_for({ controller: 'new_administrateur/procedures', action: :update, id: @procedure.id }),
      multipart: true,
      html: { class: 'form procedure-form__column--form' } do |f|

      %h1.page-title Description

      = render partial: 'new_administrateur/procedures/informations', locals: { f: f }

      .procedure-form__actions.sticky--bottom
        .actions-right
          = link_to 'Annuler', admin_procedure_path(id: @procedure), class: 'button', data: { confirm: 'Êtes-vous sûr de vouloir annuler les modifications effectuées ?'}
          = f.button 'Enregistrer', class: 'button primary send'

    .procedure-form__column--preview
      .procedure-form__preview.sticky--top
        %h3.procedure-form__preview-title Aperçu
        .procedure-preview
          = render partial: 'shared/procedure_description', locals: { procedure: @procedure }