Concept Flow - Static files in templates
Start Template Rendering
Load static tag library
Parse {% static 'path' %}
Resolve static URL
Insert resolved URL in HTML
Render full HTML with static links
Send to browser
When Django renders a template, it loads the static tag library, resolves static file paths to URLs, and inserts them into the HTML before sending it to the browser.