Commit 4e10c676 by Damien Moulard

add autocomplete off to adherent admin checkbox fields

parent 0578e97c
...@@ -200,9 +200,11 @@ class AdherentAdmin extends AbstractAdmin ...@@ -200,9 +200,11 @@ class AdherentAdmin extends AbstractAdmin
->with('Identité') ->with('Identité')
->add('ccasAccepted', null, [ ->add('ccasAccepted', null, [
'label' => 'A pris connaissance et accepté la procédure des aides facultatives CCAS', 'label' => 'A pris connaissance et accepté la procédure des aides facultatives CCAS',
'attr' => ['autocomplete' => 'off']
]) ])
->add('ccasEligible', null, [ ->add('ccasEligible', null, [
'label' => 'Éligible aux aides facultatives CCAS', 'label' => 'Éligible aux aides facultatives CCAS',
'attr' => ['autocomplete' => 'off']
]) ])
->end() ->end()
->end() ->end()
......
...@@ -52,6 +52,7 @@ class UserFormType extends AbstractType ...@@ -52,6 +52,7 @@ class UserFormType extends AbstractType
]) ])
->add('enabled', null, [ ->add('enabled', null, [
'label' => 'Activé ?', '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