Load CSS/images in Django
问题 I've read the official Django Docs and many other posts here in SO. Still I'm unable to figure out the way to load my CSS files in HTML pages. I'm running Django 1.4 . Here is my whole structure of mysite project having auth as the app. mysite/ manage.py settings.py __init__.py urls.py auth/ __init__.py forms.py models.py views.py templates/ index.html home.html media/ common.css How can I load my common.css file in index and home template files? 回答1: Take a look at static files : https:/