Is there a way I can access the form that caused a post_save
?
The use case is that I have a field (a checkbox) that isn't attached to a particular model, but it's an extra field in the form itself.
I want to know whether the field was checked or unchecked when the form got saved and the model stored, and imho the post_save
signal is a good place to put the logic that should process that extra field.
I'm also open to suggestions where else I could put that piece of code.