So, I\'m still a total noob at Django and I was wondering how to do the following:
So lets say that I have something like the below code:
class UserP
The way I did it was to create a form based on the first model, and then to create a form based on the second model that inherits the first form. Meaning:
class UserProfileForm(ModelForm): ...
class UserProfileOtherForm(UserProfileForm): ...
And pass the UserProfileOtherForm to form template. It worked for me. Not sure if there is a simpler approach.