As the question implies, my django doesn't seem to be loading the js and css for my theme.
This is the structure of my project:
-->mysiteX
---->.idea
---->mysite
------->migrations
__init__
admin.py
apps.py
models.py
test.py
views.py
---->mysiteX
__init__
settings
urls
wsgi
----->venv
-------->Lib
---------->site-packages
----------->django
------------>contrib
------------->auth
-------------->templates
index.html
--------------->static
---------------->js
---------------->css
---------------->img
---------------->fonts
db.sqlite3
manage
This is what I have in my settings.py file
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
TEMPLATE_DIR = os.path.join(BASE_DIR, '/templates')
STATIC_URL = '/templates/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
I have tried changing my settings.py file to this effect
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, '/templates/static')
but still not getting the css and JS loaded. Here is a screenshot of my page
