所以,我仍然是 Django 的菜鸟,我想知道如何执行以下操作:
所以可以说我有类似下面的代码:
class UserProfile(models.Model):
#Some fields
class UserProfileOther(models.Model):
#Some other fields that I want in another table for organization
user_profile = models.OneToOneField(UserProfile)
我现在如何创建一个包含上述两个模型的表单?