django - Server error loading static files
So im building my own django site. Right now im stuck with loading the statics. im getting the following error in the console: GET http://localhost:8000/static/css/style.css 500 (Internal Server Error) Im trying to load a css file using the static taggs: {{ STATIC_URL }} in my settings i've edited the following: PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__)) STATIC_ROOT = os.environ.get('STATIC_ROOT',os.path.join(PROJECT_ROOT,"static",)) STATIC_URL = '/static/' STATICFILES_DIRS = ( os.path.join(PROJECT_ROOT, "static",), ) also added the TEMPLATE_CONTEXT_PROCESSORS: TEMPLATE_CONTEXT