Re: User additional profile

2010-11-23 Thread bruno desthuilliers
On 22 nov, 20:19, robos85 wrote: > As Django noob I successfully created user validation and managed to > add user. But I also created additional table for user profile, > registered it in settings. But when I save() user to create it, my > additional table is still empty. You need to create a

Re: User additional profile

2010-11-23 Thread Carlos Daniel Ruvalcaba Valenzuela
What you want is to add more field to the User model, the common way to do this is to create an UserProfile model which will be linked to a given user, check the documentation on the django book on this: http://www.djangobook.com/en/1.0/chapter12/#cn222 Regards, Carlos Ruvalcaba On Mon, Nov 22,

User additional profile

2010-11-22 Thread robos85
As Django noob I successfully created user validation and managed to add user. But I also created additional table for user profile, registered it in settings. But when I save() user to create it, my additional table is still empty. How can I create that user row when adding user to users table? I