I am using models in following way:
class UserProfile:
# Some Stuff
class CompanyProfile(UserProfile):
# Some more stuff
class CandidateProfile(UserProfile):
# Even more stuff
mean CompanyProfile and CandidateProfile are inheriting from UserProfile . How will I populate these CompanyProfile and CandidateProfile from whether registrationform and from another profileform? How will I tell it that which profile I am creating a user or entering data?