-
Interesting Django discovery: Recursive template includes only work with absolute paths, not with relative ones. So
{% include "./thing.html" %}
within thing.html doesn't work, but{% include "path/to/thing.html" %}
does.
{% include "./thing.html" %}
within thing.html doesn't work, but {% include "path/to/thing.html" %}
does.