I am looking for a way to achieve the following with Django, would appreciate it if someone can point me in the right direction to do this.
There are 3 registered models in an app (Model1,Model2 and Model3). The user will submit a form (single field, e.g. Project Name and Submit button), let's say the project he creates by submitting this form is 'PROJECT001'. Then what is expected to be done is to copy/clone the 3 models (Model1,Model2 and Model3) with a suffix of the project, i.e. 3 new models should be created 'PROJECT001_Model1', 'PROJECT001_Model2', 'PROJECT001_Model3'.
I have tried to search for this, however can't find any resources. The closest I have found is https://code.djangoproject.com/wiki/DynamicModels but this documentation seems confusing. Any help is appreciated. Thanks.