I have a Django project with two models: Applicant and Client, where Client is a subclass of Applicant. I would like some way of allowing a user to add an existing Applicant ins
You can create a Client instance from an existing Applicant instance with the following code:
Client
Applicant
client = Client(applicant_ptr=applicant) client.save_base(raw=True)