1👍
This finally worked for me:
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'mysite/static')
0👍
Try to change it to:
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'mysite/')
- Invalid URL pattern using Django with Mezzanine
- Django ImportError: No module named wyat.settings
- Django: How to order a query set for a foreign key by a field of referencing class
Source:stackexchange.com