22
Oct
pprinting the Django context object
This was non-obvious to me for quite some time, and I tried several different approaches before settling on this one: If you would like to pprint your Django Context (or RequestContext) object from within a template itself, there are several approaches you can take. The easiest way I found is to say: context['context'] = context [...]
Continue Reading →