root = lambda *dirs: join(abspath(BASE_DIR), *dirs)
STATIC_ROOT = root("static","static")
STATIC_URL = "/static/"
# Additional locations of static files
STATICFILES_DIRS = [
root("static"),
root("media")
]
STATICFILES_FINDERS = [
"django.contrib.staticfiles.finders.FileSystemFinder",
"django.contrib.staticfiles.finders.AppDirectoriesFinder",
]