I am working on a Django employee management system, I want the employee bio data on the same table as the user object used for registration and login
I tried adding the user model as a OnetoOneField on the employee table, but I don’t like having to register the user and then fill the employee form separately.
I want the users to be able to create their bio data while creating an account