My question: Can I simply ignore all of that nonsense of static, media, collectstatic and god knows what and simply link my css, img and my js files normally?
Take the admin files as for an example. I copied the templates into my projects template folder to edit them. Simple enough, but then when I wanted to change the css... Oh boy. I can't link any css files! Only css this template is willing to find is located in my django sources... Change that to anything (like href="/assets/css/admin.css") and it doesn't find it. I tried to edit the settings.py file and that static whatever thingy over there; this obviously didn't work.
Please help me: Excactly what do I need to write to my settings.py in order to have the following structure and to be able to link my files normally?
Project
----Site
----Templates
--------Admin
--------Site
----Assets
--------Img
--------Css
--------Js
Thanks in advance!