This post originated from an RSS feed registered with Python Buzz
by Ed Taekema.
Original Post: DJango - Automatically Send Request to templates?
Feed Title: Ed Taekema - Road Warrior Collaboration
Feed URL: http://feeds.feedburner.com/RoadWarriorCollaborationPython
Feed Description: A blog looking at business communication, knowledge management, scripting tools and more.
Is there a setting I’m missing somewhere? In order to send the session settings related to the current user back to the template in DJango from a custom view, I need to manually include the current request in the context like this:
return render_to_response('info/index.html',
{'latest_process_list':my_process_list},
context_instance=RequestContext(request))
This [...]