I am using gae-sessions for the back end session management, the problem that occurs is although I am able to get the data of the session in a self.response.out.write() command when I am trying something simple like
session = get_current_session()
profile = session['me']
templates.render(self, 'tmp.html', profile=profile)
{{profile}}
will have no value when the page is rendered by django. Any ideas?