Concept Flow - Function-based views basics
HTTP Request Received
URL Dispatcher Matches URL
Call Function-based View
Process Request in View Function
Return HttpResponse Object
Send Response to Client
The web server receives a request, Django matches the URL, calls the function-based view, which processes the request and returns a response.