84b125d272
The main problem come from %label{for: input_id} #{champ.libelle} %span.notice= string_to_html(champ.description) %input where string_to_html contains p tags The proposed solution is %label #{champ.libelle} %p.notice %input It should be iso in the graphic sense.
46 lines
1.7 KiB
Text
46 lines
1.7 KiB
Text
- 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_instructeur_procedure_path(@procedure), html: { class: 'form' } do |form|
|
||
.explication
|
||
Configurez sur cette page les notifications que vous souhaitez recevoir par email pour cette démarche.
|
||
|
||
= form.label :email_notification, "Recevoir une notification quotidienne"
|
||
|
||
%p.notice
|
||
Cet email vous signale le dépôt de nouveaux dossiers sur cette démarche, ou des changements sur vos dossiers suivis.
|
||
%p.notice
|
||
Il est envoyé une fois par jour, du lundi au samedi, vers 10 h du matin.
|
||
|
||
.radios
|
||
%label
|
||
= form.radio_button :email_notifications_enabled, true
|
||
Oui
|
||
|
||
%label
|
||
= form.radio_button :email_notifications_enabled, false
|
||
Non
|
||
|
||
= form.label nil, "Recevoir un récapitulatif hebdomadaire"
|
||
%p.notice
|
||
Cet email récapitule l’activité de la semaine sur l’ensemble de vos démarches.
|
||
%p.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
|
||
= link_to "Revenir à la procédure", instructeur_procedure_path(@procedure), class: 'button mr-1'
|
||
= form.submit "Enregistrer", class: "button primary"
|