From b542ccec9d531f91ff0a7f3b8dfe8b003bd0a431 Mon Sep 17 00:00:00 2001 From: Manel Clos <manelclos@gmail.com> Date: Fri, 19 Feb 2016 10:49:23 +0100 Subject: [PATCH] add collectstatic step to documentation --- docs/configuration.rst | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/configuration.rst b/docs/configuration.rst index cdf92471a..ef54ca85e 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -1,6 +1,16 @@ Configuration ============= -The only mandatory configuration is adding ``import_export`` to your -``INSTALLED_APPS``. This isn't necessary, if admin integration is not -used. +You only need to perform this configuration step if you use + django-import-export in the admin. + +Add ``import_export`` to your ``INSTALLED_APPS``: + + INSTALLED_APPS = [ + # ... + 'import_export', + ] + +Deploy static files: + + $ python manage.py collectstatic