First time here? Check out the FAQ!

Revision history  [back]

The issue you are seeing is that static files are not served with DEBUG=False, so the site appears unstyled.

With runserver, please use DEBUG=True, as in production mode static files are not served by django.

Please run python manage.py collectstatic - to collect the static files for production and configure your webserver to serve the static resources directly.

The issue you are seeing is that static files are not served with DEBUG=FalseDEBUG=True, so the site appears unstyled.

With runserver, please use DEBUG=True, as in production mode static files are not served by django.

Please run python manage.py collectstatic - to collect the static files for production and configure your webserver to serve the static resources directly.