I am using the common pattren of using he Django User model while having a OneToOne relation via a Userprofile to extend the user.
I would like to have one view which allows me to set both User fields and UserProfile fields on the same form. It should apply both db transactions to User and Userprofile tables.
I would love to use the ModelForm however I dont find anyway that I can use two models in the same form.
How should I accomplish this ?