What is the better way to create multiple user types in Django? abstract classes or proxy models?
I want to create multiple user types in Django. The user types are ‘Admin’, ‘Company’ and ‘Individual’. Should I use abstract models or proxy models for this requirement.