Concept Flow - TemplateView for simple pages
Request URL
URLconf matches TemplateView
TemplateView calls get() method
get() renders template with context
Response with rendered HTML sent back
When a user visits a URL, Django's URLconf routes it to TemplateView, which renders the specified template and sends the HTML back.