소스 검색

Update README.rst

Denis K. 9 년 전
부모
커밋
3f0be1b748
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      README.rst

+ 10 - 0
README.rst

@@ -64,6 +64,16 @@ Installation
             'jet',
             'jet',
             'django.contrib.admin',
             '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):
 * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):