On Aug 4, 2006, at 12:20 PM, Dave wrote:
> Now, I know I'm probably not making proper use of the User object, so
> any suggestions in that regard would be helpful, as well as tied to  
> the
> main problem I'm having.

Yeah, what you want is ``request.user`` -- that's the user who's  
loading the view.  In a view only available to authenticated users  
you can be assured that testing against it will work::

        customer_order_list = Order.objects.filter(customer=request.user)

Is likely what you want.

There's no need to create a new user object every time.  Simply use  
the existing one from ``request.user`` and have a signup page.

Jacob

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to