I need to have 2 user roles in my project: client and employer
Question number one: There is an option called 'groups' in Django admin panel.Is it the same stuff like user roles?
Question number 2:
Let's say that I need to add custom field like company_name
to users with role customer
I have read some question like this Extending the User model with custom fields in Django
And I got from that I should use a property called OneToOneField(User)
But still I still confused.
So how can I add this custon field company_name
in model?