I had this same problem. Try this for your return statements, if
you're using render_to_response:
return render_to_response("a_template.html", c,
context_instance=RequestContext(request))
The context_instance was the key in my case. You'll need to add it to
all your views though.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.