Concept Flow - URL namespacing
Define app URLs with app_name
Include app URLs in project URLs with namespace
Use {% url 'namespace:name' %} in templates or reverse() in views
Django resolves URL by looking up namespace and name
Correct URL returned or error if not found
This flow shows how Django uses URL namespacing to organize URLs by app and resolve them correctly.