1👍
In django, you can make them both able to authenticate, or register, by setting a OneToOneField
to User
in your WorkPlace and Employee models. If you have set this user as AUTH_USER_MODEL
= <yourapp.User>
in settings, you will be able to register with the models that have set this field.
Source:stackexchange.com