Re: Best Pratice To Implement User Types

2013-06-05 Thread coded kid
Thanks! do you think Django group is the best for this? should I leave asssign a group to every user who signed up through django registration? On Tuesday, 4 June 2013 12:12:24 UTC+1, Frank Bieniek wrote: > > Hi, > the user stays the same, but he becomes member of the PaidMember Group, > (Acce

Re: Best Pratice To Implement User Types

2013-06-04 Thread Frank Bieniek
Hi, the user stays the same, but he becomes member of the PaidMember Group, (Access handling) and he gets a monthly payment record history entry. Think about role changes, becomes PaidMember, leaves PaidMember, becomes FreeUser, leaves FreeUser. So you have to think about the role change tra

Best Pratice To Implement User Types

2013-06-03 Thread coded kid
I'm building a django project and I want to have free users and premium users. I've been hitting my head on the best way to implement this. Users will be able to login through the same login page and redirect to different pages after logging in based on their user type. My main challenge is th