From dea936ebee2db5a4ef133a1904e8d89d91e26aa6 Mon Sep 17 00:00:00 2001 From: AppleGrew Date: Sun, 29 Sep 2013 13:52:45 +0530 Subject: [PATCH] Update get_started.rst --- docs/get_started.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/get_started.rst b/docs/get_started.rst index 4d1958f..89cd9df 100644 --- a/docs/get_started.rst +++ b/docs/get_started.rst @@ -20,8 +20,12 @@ Installation 3. When deploying on production server, run:: python manage.py collectstatic + +4. Add `django_select` to your urlconf **if** you use any 'Auto' fields. + + url(r'^select2/', include('django_select2.urls')), -4. (Optionally) If you need multiple processes support, then:: +5. (Optionally) If you need multiple processes support, then:: python manage.py syncdb