Merge pull request #3748 from betagouv/fix-3721
Change notification screen to make it understandable
This commit is contained in:
commit
b92f55fcfb
3 changed files with 38 additions and 2 deletions
|
@ -62,7 +62,7 @@ En local, un utilisateur de test est créé automatiquement, avec les identifian
|
||||||
### Programmation des jobs
|
### Programmation des jobs
|
||||||
|
|
||||||
AutoArchiveProcedureJob.set(cron: "* * * * *").perform_later
|
AutoArchiveProcedureJob.set(cron: "* * * * *").perform_later
|
||||||
WeeklyOverviewJob.set(cron: "0 8 * * 0").perform_later
|
WeeklyOverviewJob.set(cron: "0 7 * * 1").perform_later
|
||||||
AutoReceiveDossiersForProcedureJob.set(cron: "* * * * *").perform_later(procedure_declaratoire_id, Dossier.states.fetch(:en_instruction))
|
AutoReceiveDossiersForProcedureJob.set(cron: "* * * * *").perform_later(procedure_declaratoire_id, Dossier.states.fetch(:en_instruction))
|
||||||
SendinblueUpdateAdministrateursJob.set(cron: "0 10 * * *").perform_later
|
SendinblueUpdateAdministrateursJob.set(cron: "0 10 * * *").perform_later
|
||||||
FindDubiousProceduresJob.set(cron: "0 0 * * *").perform_later
|
FindDubiousProceduresJob.set(cron: "0 0 * * *").perform_later
|
||||||
|
|
|
@ -92,6 +92,18 @@
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.vertical {
|
||||||
|
label {
|
||||||
|
display: block;
|
||||||
|
margin-left: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=radio] {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:not([data-address='true']),
|
input[type=text]:not([data-address='true']),
|
||||||
|
|
|
@ -8,7 +8,16 @@
|
||||||
%h1 Notifications par email
|
%h1 Notifications par email
|
||||||
|
|
||||||
= form_for @assign_to, url: update_email_notifications_gestionnaire_procedure_path(@procedure), html: { class: 'form' } do |form|
|
= form_for @assign_to, url: update_email_notifications_gestionnaire_procedure_path(@procedure), html: { class: 'form' } do |form|
|
||||||
= form.label :email_notification, "Recevoir une fois par jour, du lundi au samedi vers 10 h, un email de notification me signalant le dépôt de nouveaux dossiers ou des changements sur mes dossiers en cours"
|
.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
|
||||||
|
|
||||||
|
%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.
|
||||||
|
|
||||||
.radios
|
.radios
|
||||||
%label
|
%label
|
||||||
|
@ -19,6 +28,21 @@
|
||||||
= form.radio_button :email_notifications_enabled, false
|
= form.radio_button :email_notifications_enabled, false
|
||||||
Non
|
Non
|
||||||
|
|
||||||
|
= 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
|
||||||
|
Il est envoyé chaque semaine le lundi matin, et n’est pas désactivable.
|
||||||
|
|
||||||
|
.radios
|
||||||
|
%label
|
||||||
|
= radio_button_tag "not_implemented", "Oui", true, disabled: true
|
||||||
|
Oui
|
||||||
|
%label
|
||||||
|
= radio_button_tag "not_implemented", "Non", false, disabled: true
|
||||||
|
Non
|
||||||
|
|
||||||
.send-wrapper
|
.send-wrapper
|
||||||
= link_to "Revenir à la procédure", gestionnaire_procedure_path(@procedure), class: 'button mr-1'
|
= link_to "Revenir à la procédure", gestionnaire_procedure_path(@procedure), class: 'button mr-1'
|
||||||
= form.submit "Enregistrer", class: "button primary"
|
= form.submit "Enregistrer", class: "button primary"
|
||||||
|
|
Loading…
Reference in a new issue