MasterofJOKers 167412a003 Mention "collectstatic" in the docs
When using the built-in webserver in debug mode, the static files are
handled automatically. From the Django docs:

	During development, if you use django.contrib.staticfiles, this will
	be done automatically by runserver when DEBUG is set to True (see
	django.contrib.staticfiles.views.serve()).

	This method is grossly inefficient and probably insecure, so it is
	unsuitable for production.

This means, when using a real webserver, it also has to serve the static
files, i.e.  CSS and JavaScript. For that, one needs to run `./manage.py
collectstatic` first.
2017-06-26 17:08:37 +02:00
..
2016-01-24 20:15:50 -05:00
2017-05-10 22:25:59 +02:00
2016-01-24 20:15:50 -05:00
2016-03-28 20:01:01 +01:00
2017-06-26 17:08:37 +02:00
2017-01-01 18:37:44 +00:00
2016-03-28 20:01:01 +01:00