Signals that the template extends a parent template.
{% extends %} Tag
signals that the template extends a parent template.
- Argument(s)
parent_template- Closing tag
- Not required
Documentation
More Utility Tags
Did we get something wrong? Is there a use case for the
extends tag that we should add? Please let us know.
Official Documentation
This page last updated on August 2, 2026
This page last updated on August 2, 2026

Commentary
The parent template marks its overridable regions with
blocktags; extending gives you those blocks to fill in.This is well documented under Template Inheritance in the official documentation.