Hello,
I want to improve this method:
django/forms/forms.py: Form.get_changed_data()
I need to have access to the old data, and would like to have a triple list like this:
(field_name, old_value, new_value)
Code:
https://github.com/django/django/blob/master/django/forms/forms.py#L415
My current solution is to subclass Form and overwrite this method.
This overwrite is mostly a cut+paste of django's implementation and stores the triple list
on the form instance.
I guess this triple list would be useful for other people, too.
What do you think?
Is there interest do make the above triple list available in django core?
Thomas