2019-03-13 17:37:07 +01:00
|
|
|
|
- content_for(:title, "Notifications pour #{@procedure.libelle}")
|
|
|
|
|
|
|
|
|
|
= render partial: 'new_administrateur/breadcrumbs',
|
2020-07-07 16:51:10 +02:00
|
|
|
|
locals: { steps: [link_to(@procedure.libelle, instructeur_procedure_path(@procedure)),
|
2019-03-13 17:37:07 +01:00
|
|
|
|
'Notifications'] }
|
|
|
|
|
|
|
|
|
|
.container
|
|
|
|
|
%h1 Notifications par email
|
|
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
|
= form_for @assign_to, url: update_email_notifications_instructeur_procedure_path(@procedure), html: { class: 'form' } do |form|
|
2019-04-04 12:06:28 +02:00
|
|
|
|
.explication
|
|
|
|
|
Configurez sur cette page les notifications que vous souhaitez recevoir par email pour cette démarche.
|
|
|
|
|
|
2020-04-09 11:43:23 +02:00
|
|
|
|
= form.label :email_notification, "Recevoir une notification à chaque dossier déposé"
|
|
|
|
|
|
|
|
|
|
%p.notice
|
|
|
|
|
Cet email vous signale le dépôt d'un nouveau dossier.
|
|
|
|
|
%p.notice
|
|
|
|
|
Il est envoyé à chaque fois qu'un usager dépose un dossier.
|
|
|
|
|
|
|
|
|
|
.radios
|
|
|
|
|
%label
|
|
|
|
|
= form.radio_button :instant_email_dossier_notifications_enabled, true
|
|
|
|
|
Oui
|
|
|
|
|
|
|
|
|
|
%label
|
|
|
|
|
= form.radio_button :instant_email_dossier_notifications_enabled, false
|
|
|
|
|
Non
|
|
|
|
|
|
2020-04-02 10:18:23 +02:00
|
|
|
|
= form.label :email_notification, "Recevoir une notification à chaque message déposé"
|
2019-04-04 14:54:38 +02:00
|
|
|
|
|
2019-11-20 18:16:30 +01:00
|
|
|
|
%p.notice
|
2020-04-02 10:18:23 +02:00
|
|
|
|
Cet email vous signale le dépôt d'un nouveau message sur vos dossiers suivis.
|
2019-11-20 18:16:30 +01:00
|
|
|
|
%p.notice
|
2020-04-02 10:21:23 +02:00
|
|
|
|
Il est envoyé à chaque fois qu'un usager dépose un message.
|
2019-03-13 17:37:07 +01:00
|
|
|
|
|
|
|
|
|
.radios
|
|
|
|
|
%label
|
2020-04-02 10:18:23 +02:00
|
|
|
|
= form.radio_button :instant_email_message_notifications_enabled, true
|
2019-03-13 17:37:07 +01:00
|
|
|
|
Oui
|
|
|
|
|
|
|
|
|
|
%label
|
2020-04-02 10:18:23 +02:00
|
|
|
|
= form.radio_button :instant_email_message_notifications_enabled, false
|
2019-03-13 17:37:07 +01:00
|
|
|
|
Non
|
|
|
|
|
|
2020-04-02 10:21:23 +02:00
|
|
|
|
= form.label :email_notification, "Recevoir une notification quotidienne"
|
2020-04-02 10:18:23 +02:00
|
|
|
|
|
|
|
|
|
%p.notice
|
2020-04-02 10:21:23 +02:00
|
|
|
|
Cet email vous signale le dépôt de nouveaux dossiers sur cette démarche, ou des changements sur vos dossiers suivis.
|
2020-04-02 10:18:23 +02:00
|
|
|
|
%p.notice
|
2020-04-02 10:21:23 +02:00
|
|
|
|
Il est envoyé une fois par jour, du lundi au samedi, vers 10 h du matin.
|
2020-04-02 10:18:23 +02:00
|
|
|
|
|
|
|
|
|
.radios
|
|
|
|
|
%label
|
|
|
|
|
= form.radio_button :daily_email_notifications_enabled, true
|
2020-04-02 10:21:23 +02:00
|
|
|
|
Oui
|
2020-04-02 10:18:23 +02:00
|
|
|
|
|
|
|
|
|
%label
|
|
|
|
|
= form.radio_button :daily_email_notifications_enabled, false
|
2020-04-02 10:21:23 +02:00
|
|
|
|
Non
|
2020-04-02 10:18:23 +02:00
|
|
|
|
|
2020-02-11 15:51:15 +01:00
|
|
|
|
= form.label :email_notification, "Recevoir un récapitulatif hebdomadaire"
|
2019-11-20 18:16:30 +01:00
|
|
|
|
%p.notice
|
|
|
|
|
Cet email récapitule l’activité de la semaine sur l’ensemble de vos démarches.
|
|
|
|
|
%p.notice
|
2020-02-11 15:51:15 +01:00
|
|
|
|
Il est envoyé chaque semaine le lundi matin.
|
2019-04-04 14:54:38 +02:00
|
|
|
|
|
2019-04-04 12:06:28 +02:00
|
|
|
|
.radios
|
|
|
|
|
%label
|
2020-02-11 15:51:15 +01:00
|
|
|
|
= form.radio_button :weekly_email_notifications_enabled, true
|
2019-04-04 12:06:28 +02:00
|
|
|
|
Oui
|
|
|
|
|
%label
|
2020-02-11 15:51:15 +01:00
|
|
|
|
= form.radio_button :weekly_email_notifications_enabled, false
|
2019-04-04 12:06:28 +02:00
|
|
|
|
Non
|
|
|
|
|
|
2019-03-13 17:37:07 +01:00
|
|
|
|
.send-wrapper
|
2019-08-06 11:02:54 +02:00
|
|
|
|
= link_to "Revenir à la procédure", instructeur_procedure_path(@procedure), class: 'button mr-1'
|
2019-03-13 17:37:07 +01:00
|
|
|
|
= form.submit "Enregistrer", class: "button primary"
|