Concept Flow - URL parameters with angle brackets
Start: URL request
Django URL dispatcher reads pattern
Detect angle brackets <param>
Extract parameter value from URL
Pass parameter to view function
View uses parameter to generate response
Send response back to browser
Django reads the URL pattern with angle brackets, extracts the parameter from the URL, and passes it to the view function.