Commit 4e10c676 by Damien Moulard

add autocomplete off to adherent admin checkbox fields

parent 0578e97c
......@@ -200,9 +200,11 @@ class AdherentAdmin extends AbstractAdmin
->with('Identité')
->add('ccasAccepted', null, [
'label' => 'A pris connaissance et accepté la procédure des aides facultatives CCAS',
'attr' => ['autocomplete' => 'off']
])
->add('ccasEligible', null, [
'label' => 'Éligible aux aides facultatives CCAS',
'attr' => ['autocomplete' => 'off']
])
->end()
->end()
......
......@@ -52,6 +52,7 @@ class UserFormType extends AbstractType
])
->add('enabled', null, [
'label' => 'Activé ?',
'attr' => ['autocomplete' => 'off']
])
;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment