This is my processors list direct from the project's settings.py:
TEMPLATE_CONTEXT_PROCESSORS = (
"django.contrib.auth.context_processors.auth",
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
"django.core.context_processors.media",
"django.core.context_processors.static",
"django.contrib.messages.context_processors.messages",
"django.core.context_processors.request",
)
Perhaps the ordering caused this?
On May 9, 3:24 pm, Matthias Kestenholz <
m...@feinheit.ch> wrote:
> On Wed, May 9, 2012 at 7:04 PM, Cromulent <
dave.fob...@gmail.com> wrote:
> > I got a "Caught VariableDoesNotExist while rendering: Failed lookup
> > for key [request] in '......." on the render_region call. I'd guess
> > the tags did not load.
>
> No, either the template did not receive a RequestContext upon
> rendering time (extremely unlikely) or you forgot to add
> `django.core.context_processors.request` to the list of
> TEMPLATE_CONTEXT_PROCESSORS as is documented here:
>
> <
http://www.feinheit.ch/media/labs/feincms/templatetags.html?highlight...>
>
> Hth
> Matthias