Can we append to a {% block %} rather than overwrite?

PKKid picture PKKid · Nov 12, 2009 · Viewed 18.1k times · Source

In my core.html I have a block labeled javascript. It would be great if I can append more lines to this block without overwriting everything in it.

Answer

Steve Losh picture Steve Losh · Nov 12, 2009
{% block javascript %}
    {{ block.super }}
    ... more content ...
{% endblock %}

See: Django documentation - Template inheritance