[Fixed]-Django: All Static Files 404 (but findstatic is able to locate them)

1👍

Thanks to the prompting from chem1st, I converted the template to the {% loadstatic %} syntax in the template which is currently recommended in the docs.

It is working now.

0👍

I suspect you need to

$ manage.py collectstatic 

..

you also would need to set a STATIC_ROOT

Leave a comment