When I was using the built-in simple server, everything is OK, the admin interface is beautiful:
python manage.py runserver
However, when I try to serve my application using a wsgi server with django.core.handlers.wsgi.WSGIHandler
, Django seems to forget where the admin media files is, and the admin page is not styled at all:
gunicorn_django
How did this happen?