willhardy / django-seo

Provides a set of tools for managing Search Engine Optimisation (SEO) for Django sites.
BSD 3-Clause "New" or "Revised" License
251 stars 117 forks source link

documentation template context processor #21

Closed blite closed 13 years ago

blite commented 13 years ago

I had to add the following to get django-seo to work maybe i'm using an older settings.py file though

TEMPLATE_CONTEXT_PROCESSORS = ( "django.core.context_processors.request",

"django.core.context_processors.auth",

"django.core.context_processors.debug",

"django.core.context_processors.i18n",

)

it really only needs the first one but it should be in documentation I think.

willhardy commented 13 years ago

This isn't absolutely necessary, but I see the value in putting it in the tutorial. I'll add it now.

Thanks

willhardy commented 13 years ago

Closed by 3512c00d85a252adef09671156ba58dc9a9d174a: Adding the request context processor will make life easier.