I have the regular Django User
model and a UserDetails
model (OneToOneField
with User
), which serves as an extension to the User
model. (I tried Django 1.5's feature and it was a headache with strangely horrible documentation, so I stuck with the OneToOneField
option)
So, in my quest to build a custom registration page that will have a registration form comprised of the User
fields and the UserDetails
fields, I wondered if there was a way to generate the form automatically (with all of its validations) out of these two related models. I know this works for a form made of one model:
class Meta:
model = MyModel
But is there anyway to get a similar functionality for a form comprised of two related models?