You can find the user object in the request:
http://docs.djangoproject.com/en/dev/ref/request-response/#django.http.HttpRequest.user

So request.user.id will give you the userid of the currently loggedin user.

Tino

On Sat, Apr 25, 2009 at 4:44 PM, Daniel Strasser <webdeveloper....@gmail.com
> wrote:

>
> Hey
>
> I have been searching for a while for this, but I didn't came to a
> solution. I use the Django Authentication framework.
>
> In a view, I have:
>
> def settings(request):
>        cust = Customer.objects.get(???)
>        return render_to_response('useraccount/settings.html', {'loggedin':
> checklogin(request), 'cust': cust})
>
> The Customer model has a field "user" which is a foreign key to
> Django's Authentication framework:
>
> user = models.ForeignKey(User)
>
> So, every customer has a normal user account. I know that my model
> code wrks because I can map User accounts to a customer model in the
> Django admin facility.
>
> Hope my question was clear enough :-/
>
> Daniel
> >
>

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to