Concept Flow - URL parameter type converters
Define URL pattern with converter
Request URL received
Django matches URL pattern
Extract parameter using converter
Pass converted parameter to view
View uses parameter as correct type
Django reads the URL pattern, uses the converter to extract and convert the parameter, then passes it to the view as the right type.