2015-11-27T11:40:34
Static files for an app follow the following directory structure my_app/static/my_app and are picked up by ./manage.py collectstatic
when ready to deploy. If you're wanting to use static files that span multiple apps, update your settings.py to include the following:
STATICFILES_DIRS = ( os.path.join(BASE_DIR, "project_static"), )
Temping …