feat(instruction options management): update alert info and confirmation
This commit is contained in:
parent
c10bec342a
commit
264594fd58
2 changed files with 15 additions and 5 deletions
|
@ -2,6 +2,10 @@
|
|||
fr:
|
||||
routing_configuration_notice_1:
|
||||
Le routage permet d’acheminer les dossiers vers différents groupes d’instructeurs.
|
||||
routing_not_configured:
|
||||
Vous n’avez pas configuré de routage.
|
||||
routing_configured_html:
|
||||
Vous avez configuré un routage avec <strong>%{groupe_instructeurs_count} groupes d’instructeurs.</strong>
|
||||
routing_configuration_notice_2_html: |
|
||||
<p>Pour le configurer, votre formulaire doit comporter
|
||||
au moins un champ de type %{conditionable_types}.</p>
|
||||
|
|
|
@ -16,14 +16,20 @@
|
|||
disabled: false)
|
||||
|
||||
%hr
|
||||
%p.fr-mt-2w Routage
|
||||
%p.fr-mt-2w= t('.routing_configuration_notice_1')
|
||||
%p.fr-icon-info-line.fr-hint-text{ aria: { hidden: true } }
|
||||
Plus d'informations sur le routage dans la
|
||||
= link_to('doc',
|
||||
%p Routage
|
||||
%p.fr-mt-1w.fr-hint-text= t('.routing_configuration_notice_1')
|
||||
%p.fr-alert.fr-alert--info.fr-mb-3w{ aria: { hidden: true } }
|
||||
En savoir plus sur la
|
||||
= link_to('configuration du routage',
|
||||
ROUTAGE_URL,
|
||||
title: t('.routage_doc.title'),
|
||||
**helpers.external_link_attributes)
|
||||
- if !@procedure.routing_enabled?
|
||||
%p.fr-mt-2w
|
||||
%i.fr-mt-2w= t('.routing_not_configured')
|
||||
- else
|
||||
%p.fr-mt-2w
|
||||
%i.fr-mt-2w= t('.routing_configured_html', groupe_instructeurs_count: @procedure.groupe_instructeurs.count)
|
||||
- if @procedure.active_revision.conditionable_types_de_champ.none?
|
||||
%p.fr-mt-2w= t('.routing_configuration_notice_2_html', path: champs_admin_procedure_path(@procedure), conditionable_types: TypeDeChamp.humanized_conditionable_types)
|
||||
- elsif @procedure.groupe_instructeurs.active.one?
|
||||
|
|
Loading…
Reference in a new issue