setting.py:
'DIRS': [os.path.join(BASE_DIR, 'templates'), os.path.join(BASE_DIR, 'static').replace('\', '/')],
STATIC_ROOT = os.path.join(BASE_DIR, 'static').replace('\', '/')
STATICFILES_DIRS = ( ('css', os.path.join(STATIC_ROOT, 'css').replace('\', '/')),
('images', os.path.join(STATIC_ROOT, 'images').replace('\', '/')),
('fonts', os.path.join(STATIC_ROOT, 'fonts').replace('\', '/')),
('js', os.path.join(STATIC_ROOT, 'js').replace('\', '/')), )
html:
<link href="/static/css/style.css" rel="stylesheet" type="text/css" media="all" />