I have followed these instructions: https://help.pythonanywhere.com/pages/DjangoAdminCSSNotWorking/
Inside username/webapps --> my static settings is:
url: /static/ path: /home/dalchemist/mysite2/mysite2/site_media/static
This is my project/mysite/ folder's structure. This shows all static files have been collected successfully in site_media folder.
─fixtures
─mysite
├───site_media
│ └───static
│ ├───css
│ ├───fonts
│ ├───js
│ └───pinax
│ ├───css
│ └───js
└───templates
─static
├───dist
│ ├───css
│ ├───fonts
│ └───js
└───src
├───js
└───less
I am also able to access: http://username.pythonanywhere.com/static/css/site.css , http://username.pythonanywhere.com/static/admin/img/icon_searchbox.png
But still templates are not loading
Content of the template folder:
_account_bar.html
_footer.html
_scripts.html
_styles.html
homepage.html
site_base.html
Please help.