Django Templates — a practical guide to Django templates with clear examples you can reuse in real projects.
Python Tutorial Series (76/95). Prefer one article? Read the complete Python tutorial.
Short description
Use `{% extends %}` layouts and `{{ variable }}` output. Escape is on by default for safety.
Template render
from django.shortcuts import render
def home(request):
return render(request, 'home.html', {'title': 'Home'})