Please consider this situation: I've several clients on my website and each one can create employee from his dashboard. But each of them may want different fields in there form or user model.
Example: Client_1 wants name, email, phone in there form Client_2 wants name, phone, address, and birth_date
So from default form/model client should be able to remove unwanted fields and create his required fields.
I Hope this can be done using Django or ContentTypes
Please anyone knows then please provide detailed answer. It would be really helpfull.
It really depends on what you're situation looks like. The biggest problem is the input type. It's hard to generalize
BooleanField
,CharField
,IntegerField
orTextField
into one field of some model. But I would start trying to save everything to CharFields and then convert them to the correct inputs in the Form. The models would look something like this:Variant 2 Coming from your examples you could also just try to cover all of the fields and then make a visibility setting. So the users see all fields they can choose and just change if the want them to have.
Something like this: