2019-03-13 17:37:07 +01:00
|
|
|
|
- content_for(:title, "Notifications pour #{@procedure.libelle}")
|
|
|
|
|
|
|
|
|
|
= render partial: 'new_administrateur/breadcrumbs',
|
|
|
|
|
locals: { steps: [link_to(@procedure.libelle, procedure_path(@procedure)),
|
|
|
|
|
'Notifications'] }
|
|
|
|
|
|
|
|
|
|
.container
|
|
|
|
|
%h1 Notifications par email
|
|
|
|
|
|
|
|
|
|
= form_for @assign_to, url: update_email_notifications_gestionnaire_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.
|
|
|
|
|
|
|
|
|
|
= form.label :email_notification do
|
|
|
|
|
Recevoir une notification quotidienne
|
2019-04-04 14:54:38 +02:00
|
|
|
|
|
2019-04-04 12:06:28 +02:00
|
|
|
|
%span.notice
|
|
|
|
|
Cet email vous signale le dépôt de nouveaux dossiers sur cette démarche, ou des changements sur vos dossiers suivis.
|
|
|
|
|
%span.notice
|
|
|
|
|
Il est envoyé une fois par jour, du lundi au samedi, vers 10 h du matin.
|
2019-03-13 17:37:07 +01:00
|
|
|
|
|
|
|
|
|
.radios
|
|
|
|
|
%label
|
|
|
|
|
= form.radio_button :email_notifications_enabled, true
|
|
|
|
|
Oui
|
|
|
|
|
|
|
|
|
|
%label
|
|
|
|
|
= form.radio_button :email_notifications_enabled, false
|
|
|
|
|
Non
|
|
|
|
|
|
2019-04-04 12:06:28 +02:00
|
|
|
|
= form.label nil do
|
|
|
|
|
Recevoir un récapitulatif hebdomadaire
|
|
|
|
|
%span.notice
|
|
|
|
|
Cet email récapitule l’activité de la semaine sur l’ensemble de vos démarches.
|
|
|
|
|
%span.notice
|
2019-04-04 14:54:38 +02:00
|
|
|
|
Il est envoyé chaque semaine le lundi matin, et n’est pas désactivable.
|
|
|
|
|
|
2019-04-04 12:06:28 +02:00
|
|
|
|
.radios
|
|
|
|
|
%label
|
|
|
|
|
= radio_button_tag "not_implemented", "Oui", true, disabled: true
|
|
|
|
|
Oui
|
|
|
|
|
%label
|
|
|
|
|
= radio_button_tag "not_implemented", "Non", false, disabled: true
|
|
|
|
|
Non
|
|
|
|
|
|
2019-03-13 17:37:07 +01:00
|
|
|
|
.send-wrapper
|
|
|
|
|
= link_to "Revenir à la procédure", gestionnaire_procedure_path(@procedure), class: 'button mr-1'
|
|
|
|
|
= form.submit "Enregistrer", class: "button primary"
|