Settings.py file
STATICFILES_DIRS = (
os.path.join(BASE_DIR,'static')
)
Change to the following
STATICFILES_DIRS=[(os.path.join(BASE_DIR,'static'))]
Settings.py file
STATICFILES_DIRS = (
os.path.join(BASE_DIR,'static')
)
Change to the following
STATICFILES_DIRS=[(os.path.join(BASE_DIR,'static'))]