Concept Flow - URL building with url_for
Define route with endpoint
Call url_for(endpoint, args)
Flask finds route matching endpoint
Insert args into URL placeholders
Return full URL string
This flow shows how Flask builds a URL string by matching an endpoint name and inserting any arguments into the route pattern.