Concept Flow - Template variables with double braces
Template with {{ variable }}
Django Template Engine reads template
Find {{ variable }} placeholder
Look up variable in context dictionary
Replace {{ variable }} with value
Render final HTML output
The template engine reads the template, finds double brace variables, replaces them with context values, and produces the final HTML.