Concept Flow - Template configuration and directories
Start Django Project
Define TEMPLATES in settings.py
Set 'DIRS' to template folders
Place HTML files in template directories
Django loads templates from DIRS and app templates
Render template in views
Browser shows rendered HTML
This flow shows how Django uses the TEMPLATES setting to find and load HTML template files from configured directories, then renders them in views to display in the browser.