Concept Flow - path function for routes
Start Django app
Define URL patterns list
Use path() for each route
path() maps URL string to view function
Django matches incoming URL
If match found, call view
View returns response
Send response to browser
This flow shows how Django uses the path() function to connect URL patterns to views, so when a user visits a URL, Django finds the right view to run and sends back a response.