Django Context Processor Trouble
So I am just starting out on learning Django, and I'm attempting to complete one of the sample applications from the book. I'm getting stuck now on creating DRY URL's. More specifi
Solution 1:
TEMPLATE_CONTEXT_PROCESSORS
should contain a list of callable objects, not modules. List the actual functions that will transform the template contexts. Link to docs.
Post a Comment for "Django Context Processor Trouble"