{# This is the most important line: #}
{% extends "05_inheritance_parent.html" %}
{% block contents %}
<p>
And here is overriden contents of this block!
</p>
{% endblock %}
{% block other %}
<p>
This one shows how to use parent block's contents.
</p>
{{ block.super }}
{% endblock %}