[Django]-Django template inheritance – views.py for multiple child templates

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.

Leave a comment