About Extending or Including a Template by Relative Path

You can extend or include templates by relative path, based on the current template, for example:

1
2
3
4
5
6
{% extends "./base.html" %}

{% block content %}
    {% include "./includes/tabs.html" %}
    ...
{% endblock %}

Tips and Tricks Django 4.2 Django 3.2 Django 2.2