Currently, if you {% include %} a template into another template, then any widget sets that were loaded in the outer template are not available (even when using _soft) inside the inner template, without using a seperate {% load_widgets %}.
I'm not sure this is something that will be compatible with the way sniplates caches the widgets in the render_context, which is not used at all in an {% include %}.
Currently, if you
{% include %}
a template into another template, then any widget sets that were loaded in the outer template are not available (even when using_soft
) inside the inner template, without using a seperate{% load_widgets %}
.