ive set my STATIC_ROOT dir in my settings.py. The shell print the path right where the files are located. But on rendering template on /comp/xyz the static files wont be loaded.
http://127.0.0.1:8000/static/js/jquery.min.js
This is the link rendered by STATIC_URL. its right. But no files.
>>> print(settings.STATIC_ROOT)
/home/mandaro/django/comp/static/
>>>
there are all my staticfiles. So when i insert {{ STATIC_ROOT }}css/jquery.min.js on my templates. Why is this not working? Any some idea?