I am adding custom validation to my forms and custom fields in my Django app. I would like to be able to modify the value of a field when triggering an error. For example, i
Way to update value in clean() is update the value in form's data dictionary:
self.data["a34_stuff"] = "html"
This works for sure.