1👍
✅
Read up on Static Files. You’re going to need to add the directory to the STATICFILES_DIRS
setting, load the template tags in the template with {% load staticfiles %}
then generate the url with {% static "file" %}
. Make sure you’re reading the correct documentation for your Django version.
👤msc
Source:stackexchange.com