Re: django user model json

2013-02-08 Thread Anderson
Hi Jacob thanks for the tip but don't worry that is just a test script there are not real users and is running my local server that doesn't have any outside connection. Thanks anyway is always good to be careful. I am using django 1.4 so you telling me that parents classes cannot be serialized?

Re: django user model json

2013-02-08 Thread Jacob Kaplan-Moss
Hi Anderson -- First, I need to point out something: On Fri, Feb 8, 2013 at 2:07 PM, Anderson wrote: > 'password': > u'pbkdf2_sha256$1$ObXZ2yN3HATp$3ADUPZrzdvQCkPdJPCakfzILAIF8lPbKgAZLiXm54UI=', You just posted a password -- yours or one of your users -- on a public mailing list. PLEASE R

django user model json

2013-02-08 Thread Anderson
Hi guys I have this class that extends from Class User class UserProfile(User): #timezone = models.CharField(max_length=50, default='America/Edmonton') activation_key = models.CharField(max_length=40) key_expires = models.DateTimeField() objects = UserMan