[Answer]-Django is serving static css files, yet somehow js files show a 404

1👍

I usually use:

<a href="{{ STATIC_URL }}path/to/file">

So:

<script type="text/javascript" src="{{ STATIC_URL }}bootstrap/js/jquery.js"></script>

and this works for js files fine. So maybe try this as opposed to the {% static %} tag to see if it works.

Leave a comment