2018-01-04 18:36:45 +01:00
|
|
|
.row.white-back
|
|
|
|
%h2
|
|
|
|
Créer une nouvelle procédure à partir d'une procédure existante
|
|
|
|
|
|
|
|
.section.section-label
|
|
|
|
Pour rechercher dans cette liste, utilisez la fonction "Recherche" de votre navigateur (CTRL+F ou command+F)
|
|
|
|
%br
|
|
|
|
%br
|
|
|
|
- @grouped_procedures.each do |_, procedures|
|
|
|
|
%b
|
|
|
|
= procedures.first.organisation
|
|
|
|
%table{ style: 'margin-bottom: 40px;' }
|
|
|
|
- procedures.sort_by(&:id).each do |procedure|
|
|
|
|
%tr{ style: 'height: 36px;' }
|
|
|
|
%td{ style: 'width: 750px;' }
|
|
|
|
= procedure.libelle
|
|
|
|
%td{ style: 'padding-right: 10px; padding-left: 10px; width: 60px;' }
|
|
|
|
- if !procedure.archivee?
|
2018-01-09 11:06:56 +01:00
|
|
|
= link_to('Consulter', commencer_path(procedure_path: procedure.path), target: "_blank")
|
2018-01-04 18:36:45 +01:00
|
|
|
%td
|
2018-01-08 15:43:41 +01:00
|
|
|
= link_to('Cloner', admin_procedure_clone_path(procedure.id, from_new_from_existing: true), 'data-method' => :put, class: 'btn-sm btn-primary clone-btn')
|