Concept Flow - Why views handle request logic
User sends HTTP request
Django URL dispatcher matches URL
View function/class receives request
View processes request logic
View prepares response
Response sent back to user
This flow shows how a user's request is handled by Django: the URL is matched, the view runs the logic, then sends back a response.