My Django project is divided into several applications, and static files are stored in each application as follows:
/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'm not sure how to use the same static files in multiple applications.
source share