My Django project is divided into several apps, and the static files are stored in each app like this:
/Project
/foo
/static
/css
/style.css
/views.py
/models.py
/urls.py
/bar
/static
/css
/style.css
/views.py
/models.py
/urls.py
/urls.py
/manage.py
/settings.py
But I am not sure how to use the same static files into multiple apps.