Re: how to create 2 different kind of user profiles using django python

2016-10-30 Thread ADEWALE ADISA
You can start by designing your warden and student models in which each of them inherit the django inbuilt user model class. Each model would then have attribute that is peculiar to it alone. On Oct 30, 2016 2:53 PM, "YOGITHA A N" wrote: > Hey, > > I am new to django . Please let me know how to c

Re: how to create 2 different kind of user profiles using django python

2016-10-30 Thread Amandeep Singh
Hi If student and warden have similar attributes and only differ in permission level than you could use the same User model for both of them and to provide different access levels by creating two different authorization groups for student and warden. https://docs.djangoproject.com/en/1.10/topics/au