feat(instruction options management): update alert info and confirmation

This commit is contained in:
Eric Leroy-Terquem 2024-10-14 16:22:22 +02:00
parent c10bec342a
commit 264594fd58
No known key found for this signature in database
GPG key ID: 53D8FAECEF207605
2 changed files with 15 additions and 5 deletions

View file

@ -2,6 +2,10 @@
fr:
routing_configuration_notice_1:
Le routage permet dacheminer les dossiers vers différents groupes dinstructeurs.
routing_not_configured:
Vous navez pas configuré de routage.
routing_configured_html:
Vous avez configuré un routage avec <strong>%{groupe_instructeurs_count} groupes dinstructeurs.</strong>
routing_configuration_notice_2_html: |
<p>Pour le configurer, votre formulaire doit comporter
au moins un champ de type %{conditionable_types}.</p>

View file

@ -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?