ですから、私はまだ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)
上記の両方のモデルを含むフォームを作成するにはどうすればよいですか?