Skip to content

Instantly share code, notes, and snippets.

@Ismael-VC
Forked from issackelly/gist:928783
Created September 8, 2017 02:01
Show Gist options
  • Save Ismael-VC/f754394d2c6972d0d1fbc07c2c6a4a47 to your computer and use it in GitHub Desktop.
Save Ismael-VC/f754394d2c6972d0d1fbc07c2c6a4a47 to your computer and use it in GitHub Desktop.
Django Template {{ block.super }} example
# 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