2018-12-28 18:23:53 +01:00
- if current_administrateur.procedures.brouillons.count == 0
%h4{ style: 'padding: 20px; margin: 20px !important;' }
Bienvenue, vous allez pouvoir créer une première démarche de test. Celle-ci sera visible uniquement par vous et ne sera publiée nulle part, alors pas de crainte à avoir.
2018-12-28 18:23:27 +01:00
.row{ style: 'padding: 20px; margin: 20px !important;' }
%a#from-scratch{ href: new_admin_procedure_path, class: 'btn-lg btn-primary' }
2018-09-05 14:48:42 +02:00
Créer une nouvelle démarche de zéro
2018-05-09 16:15:19 +02:00
2018-01-04 18:36:45 +01:00
.row.white-back
2018-12-28 18:21:49 +01:00
%h3
2018-09-05 14:48:42 +02:00
Créer une nouvelle démarche à partir d'une démarche existante
2018-01-04 18:36:45 +01:00
.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
2018-07-03 20:18:49 +02:00
= procedures.first.organisation_name
2018-01-04 18:36:45 +01:00
%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;' }
2018-05-09 18:28:41 +02:00
= link_to('Consulter', apercu_procedure_path(id: procedure.id), 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')
2018-04-16 11:28:22 +02:00
%td{ style: 'padding-left: 10px;' }
= link_to('Contacter', "mailto:#{procedure.administrateur.email}")