I am using Django's auth.
I want to distinguish between 3 types of users and present different content for each type of user.
How can I distinguish between these 3 types? Should I add a choice field specifying the type of user or create 3 groups and add the users to the right group?
How can I present different content according to the type of user?