Re: GET parameter in a template

2007-10-23 Thread Rufman
> > The attribute on request is called GET (all upper-case). Django's > templating language is case-sensitive. thanks!! that was the problem --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: GET parameter in a template

2007-10-23 Thread Malcolm Tredinnick
On Tue, 2007-10-23 at 08:57 +, Rufman wrote: > hey > > I render my template by passing a RequestContext object. This way i > can access the user info ({{ user.username }}). I tried displaying the > GET parameter like this: {{ get. }} and > {{ request.get. }}. Either way i don't get any > outp

GET parameter in a template

2007-10-23 Thread Rufman
hey I render my template by passing a RequestContext object. This way i can access the user info ({{ user.username }}). I tried displaying the GET parameter like this: {{ get. }} and {{ request.get. }}. Either way i don't get any output. Is there even a way to display the get parameter without ex