-
-
Save ctrngk/b562ac8bea6b90c0aafb06b266b8805a to your computer and use it in GitHub Desktop.
Django Template {{ block.super }} example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Template: A.html | |
<html> | |
<head></head> | |
<body> | |
{% block hello %} | |
HELLO | |
{% endblock %} | |
</body> | |
</html> | |
# Template B.html | |
{% extends "A.html" %} | |
{% block hello %} | |
World | |
{% endblock %} | |
# Rendered Template B | |
<html> | |
<head></head> | |
<body> | |
World | |
</body> | |
</html> | |
# Template C | |
{% extends "A.html" %} | |
{% block hello %} | |
{{ block.super }} World | |
{% endblock %} | |
# Rendered Template C | |
<html> | |
<head></head> | |
<body> | |
Hello World | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment