From a84ad4f21f5bcbc0559495196b31dee085b68d9e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Aguirre?= Date: Sun, 14 Aug 2011 06:06:08 -0300 Subject: [PATCH] Document context processors. Refs gh-113 --- README.rst | 9 +++++++++ doc/configuration.rst | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/README.rst b/README.rst index 739a846..e2b3f08 100644 --- a/README.rst +++ b/README.rst @@ -198,6 +198,15 @@ Configuration ... ) +- Define context processors if needed:: + + TEMPLATE_CONTEXT_PROCESSORS = ( + ... + 'social_auth.context_processors.social_auth_by_type_backends', + ) + + check `social_auth.context_processors`. + - Sync database to create needed models:: ./manage.py syncdb diff --git a/doc/configuration.rst b/doc/configuration.rst index fc0405d..714183f 100644 --- a/doc/configuration.rst +++ b/doc/configuration.rst @@ -107,6 +107,15 @@ Configuration ... ) +- Define context processors if needed:: + + TEMPLATE_CONTEXT_PROCESSORS = ( + ... + 'social_auth.context_processors.social_auth_by_type_backends', + ) + + check `social_auth.context_processors`. + - Sync database to create needed models:: ./manage.py syncdb -- 2.39.5