Fixed #33317 -- Added note about unconditional evaluation of {% block %} tags.

This commit is contained in:
Victor 2022-07-22 10:09:29 +02:00 committed by GitHub
parent f810325721
commit 2fac0a1808
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -431,6 +431,15 @@ Here are some tips for working with inheritance:
In larger templates, this technique helps you see which ``{% block %}``
tags are being closed.
* :ttag:`{% block %}<block>` tags are evaluated first. That's why the content
of a block is always overridden, regardless of the truthiness of surrounding
tags. For example, this template will *always* override the content of the
``title`` block::
{% if change_title %}
{% block title %}Hello!{% endblock title %}
{% endif %}
Finally, note that you can't define multiple :ttag:`block` tags with the same
name in the same template. This limitation exists because a block tag works in
"both" directions. That is, a block tag doesn't just provide a hole to fill --