5👍
✅
Within your blocks use the #include tag in your base.html template.
{% block nav %}
{% include "nav.html" %}
{% endblock %}
This way when you then extend a new template from base.html you’ll just override what’s in the blocks.
Source:stackexchange.com