Concept Flow - How Django processes a request (URL → View → Template)
Browser sends URL request
Django URL Dispatcher
Match URL pattern to View
Call View function/class
View processes data
Render Template with context
Send HTML response back to Browser
This flow shows how Django takes a web request URL, finds the right view, processes data, renders a template, and sends back the HTML page.