I have a field in my form that is given an initial data and disabled if a user is staff (admin can choose from a list). I have this field disabled for staff with the code line below.
self.fields[''].disabled = True
After uprading to django 1.11.7 it started raising validation errors. I tried making it read only with
self.fields[''].widget.attrs['readonly'] = True
Css becomes read only, but i can still make changes.
Is this a 1.11.7 bug or something has happened in the changes on how the disabled function works. I couldn't find anything new in the documentation