Stephen
Stephen

Reputation: 6319

Check if a session variable is set

I'd like to check if a certain variable is set inside my template...if it is set, an image will be displayed...I have written this as below in my template, but apparently it's not working.

{% if request.session.chosen_year %}
    <a href="/undo_year/">
       <img src="{{ MEDIA_URL }}img/undo.gif" border="0" alt="Reset" />
    </a>
{% endif %}

What have I missed?

Upvotes: 1

Views: 1575

Answers (1)

Daniel Roseman
Daniel Roseman

Reputation: 599580

Are you using a RequestContext so that the request is passed into the template context?

Upvotes: 3

Related Questions