On Tue, Mar 3, 2009 at 4:17 PM, Bobby Roberts <tchend...@gmail.com> wrote:

>
> I need to be able toaccess request.user.id   in a template tag.  Here
> is what i'm importing:
>
>
> from django import template
> from django.contrib.auth.models import User
> from django.template.defaultfilters import stringfilter
> import time,datetime
> from auctions.models import Bid,Auction,AuctionFAQ,Bidder
> from django.contrib.auth.models import User
>
> What have i forgotten to import to be able to access request.user.id
> in my templatetags?
>
>
> Thanks in advance
> >
>
You need to pass request.user.id to the templatetag, nothing automatically
has access to the current user or the current request.

Alex

-- 
"I disapprove of what you say, but I will defend to the death your right to
say it." --Voltaire
"The people's good is the highest law."--Cicero

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