HEELP!! CANT LOAD THE CSS OF MY DJANGO ADMIN PAGE WHY??

2018-08-23 Thread Dario Coronel
I follow step by step the instructions of the documentatión of django especificly the tutorial part two when i create my superuser its all ok The problem is whe i put $python runserver he work but not find the statics files and not load the styles just the view without nothing what i have done w

Re: HEELP!! CANT LOAD THE CSS OF MY DJANGO ADMIN PAGE WHY??

2018-08-23 Thread Tim Vogt (Tim Vogt)
try $python manage.py runserver > Op 23 aug. 2018, om 21:31 heeft Dario Coronel het > volgende geschreven: > > I follow step by step the instructions of the documentatión of django > especificly the tutorial part two when i create my superuser its all ok The > problem is whe i put $python ru

Re: HEELP!! CANT LOAD THE CSS OF MY DJANGO ADMIN PAGE WHY??

2018-08-23 Thread scloutier
If you are in development mode (as I assume you are since you run `python manage.py runserver`), you need to set `DEBUG=True` in your settings.py file. Otherwise Django assumes that another program is serving the static files (nginx, apache, etc) and does not need to serve them itself. -- You