Denis K. 9 anni fa
parent
commit
3f0be1b748
1 ha cambiato i file con 10 aggiunte e 0 eliminazioni
  1. 10 0
      README.rst

+ 10 - 0
README.rst

@@ -64,6 +64,16 @@ Installation
             'jet',
             'django.contrib.admin',
         )
+        
+* Make sure 'django.core.context_processors.request' context processor is enabled in settings.py:
+
+    .. code:: python
+            
+        from django.conf import global_settings
+        
+        TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
+            'django.core.context_processors.request',
+        )
 
 * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):