[Answer]-Overriding Account/context_processors.py (Pinax/Django)

1👍

Django relies on TEMPLATE_CONTEXT_PROCESSORS to locate and import context processor. It’s a bit different from the behavior of template searching.
So override TEMPLATE_CONTEXT_PROCESSORS in settings file to change "pinax.apps.account.context_processors.account" to your import path.

👤okm

Leave a comment