For cookie/session setup: http://www.djangoproject.com/documentation/sessions/
If you don't want to roll your own user framework: http://www.b-list.org/weblog/2006/jun/06/django-tips-extending-user-model/ You might also want to reconsider your model, unless you have other reasons for needing the MyFavorites class. You don't need to create the intermediate table yourself, you can use the ManyToManyField. class WebUsers(models.Model): username = models.CharField(maxlength=100) password = models.CharField(maxlength=100) favorites = models.ManyToManyField(Products) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---