I\'m creating a Django project. I just tried taking the project out of debug, DEBUG = False and for some reason all my static files do not show up. They give an
In Django 1.3, if you are just testing using the manage.py runserver, you can add the option "--insecure", as described in the staticfiles docs:
It seems to still send emails to the admin saying that there is no template, but it does serve static files.
I'm not sure if the email issue is on purpose or a bug