Re: Users table

2010-10-25 Thread miksayer
Thanx everybody. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visi

Re: Users table

2010-10-24 Thread Tran Cao Thai
I have few questions. For learning >> Django I decided to develop simple todo-service(where you can note >> your current deals). >> I started new project "todo" and immediately I have a question. Where >> can I put users table model? Must I create new application

Re: Users table

2010-10-24 Thread Miguel Araujo
mediately I have a question. Where > can I put users table model? Must I create new application and put it > there in models.py? > I don't ask 'how can I do it?', I ask 'how must I do it?'(i.e. 'how > to?'). > P.S. sorry for my bad English. > &

Users table

2010-10-24 Thread miksayer
Hello! I'm newbie in Django. And I have few questions. For learning Django I decided to develop simple todo-service(where you can note your current deals). I started new project "todo" and immediately I have a question. Where can I put users table model? Must I create new applica

Re: Newb - Link users_extra_data table to built-in Users table - how?

2009-06-09 Thread Daniel Roseman
On Jun 9, 10:07 pm, adelaide_mike wrote: > Hi > I need to store additional info about my users.  The following in > models.py raises a name error due to User.  Have tried auth_users and > Users as well.  No joy. > > class   User_settings(models.Model): >                 user = models.ForeignKey(U

Newb - Link users_extra_data table to built-in Users table - how?

2009-06-09 Thread adelaide_mike
Hi I need to store additional info about my users. The following in models.py raises a name error due to User. Have tried auth_users and Users as well. No joy. class User_settings(models.Model): user = models.ForeignKey(User,unique=True) current_date = models.