Hi All,<br><br>I am facing issue when I am trying to access session variables in django.<br><br>I am setting the session variable something like : <br><br> request.session[&#39;cityname&#39;] = cityname<br> c = RequestContext(request, {&#39;current_date&#39;: now})<br>
 html = t.render(c)<br> return HttpResponse(html)<br><br>And I am trying to access it like : <br><br>{{ request.session.cityname }} <br>and <br>{{ request.cityname }}<br><br>But it does not seem to be working. Any suggestions ?<br>
<br>Thanks,<br>Puneet<br><br><br>