From 3ed7e7d2e02c494f98fcffe583362e2522a46556 Mon Sep 17 00:00:00 2001 From: Eric Leroy-Terquem Date: Mon, 14 Oct 2024 15:11:08 +0200 Subject: [PATCH] feat(instructeurs management): update notification alert if procedure is published --- .../instructeurs_management_component.en.yml | 4 +++- .../instructeurs_management_component.fr.yml | 4 +++- .../instructeurs_management_component.html.haml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/app/components/procedure/instructeurs_management_component/instructeurs_management_component.en.yml b/app/components/procedure/instructeurs_management_component/instructeurs_management_component.en.yml index bba6eec76..60cd0618c 100644 --- a/app/components/procedure/instructeurs_management_component/instructeurs_management_component.en.yml +++ b/app/components/procedure/instructeurs_management_component/instructeurs_management_component.en.yml @@ -1,4 +1,6 @@ --- en: title: Instructors management - notification_alert: Even if your procedure is still in test / unpublished, all the instructors you add to the procedure will be notified by email. + notification_alert: + non_publiee: Even if your procedure is still in test / unpublished, all the instructors you add to the procedure will be notified by email. + publiee: All the instructors you add to the procedure will be notified by email. diff --git a/app/components/procedure/instructeurs_management_component/instructeurs_management_component.fr.yml b/app/components/procedure/instructeurs_management_component/instructeurs_management_component.fr.yml index adbb2780a..f3a044d78 100644 --- a/app/components/procedure/instructeurs_management_component/instructeurs_management_component.fr.yml +++ b/app/components/procedure/instructeurs_management_component/instructeurs_management_component.fr.yml @@ -1,4 +1,6 @@ --- fr: title: Gestion des instructeurs - notification_alert: Même si votre démarche est encore en test / non publiée, tous les instructeurs que vous ajouterez à la démarche seront notifiés par email. + notification_alert: + non_publiee: Même si votre démarche est encore en test / non publiée, tous les instructeurs que vous ajouterez à la démarche seront notifiés par email. + publiee: Tous les instructeurs que vous ajouterez à la démarche seront notifiés par email. diff --git a/app/components/procedure/instructeurs_management_component/instructeurs_management_component.html.haml b/app/components/procedure/instructeurs_management_component/instructeurs_management_component.html.haml index 0ab12c41b..b6726a33c 100644 --- a/app/components/procedure/instructeurs_management_component/instructeurs_management_component.html.haml +++ b/app/components/procedure/instructeurs_management_component/instructeurs_management_component.html.haml @@ -1,7 +1,7 @@ - content_for(:title, t('.title')) %h1.fr-h2= t('.title') .fr-icon-mail-line.fr-alert.fr-mb-3w - %p= t('.notification_alert') + %p= t(@procedure.publiee? ? '.notification_alert.publiee' : '.notification_alert.non_publiee') = render Procedure::ImportComponent.new(procedure: @procedure)