views:

19

answers:

2

I want to display a certain in the template only if a certain GET variable is set....I thought using {% if request.get.my_var %} would work, but it's not giving me the results.

A: 

Check if you have django.core.context_processors.request in your TEMPLATE_CONTEXT_PROCESSORS in settings.py! If not put it there, or add request yourself to your rendered context! http://docs.djangoproject.com/en/dev/ref/templates/api/#django-core-context-processors-request

lazerscience
Yes...I already have that in settings.py
Stephen
+1  A: 

Variables are case-sensitive - so, assuming as lazerscience points out that you actually have the request object in the context, you would need to use {% if request.GET.my_var %}.

Daniel Roseman
Ahhhh...that solved my problem. Thnx Daniel...you've saved me several times now
Stephen