How to create a few nodes in a template with auto-generated names (e.g. for column design)
{% blocknode 'page/column-1.md' %}
## Luke
{% endblocknode %}
{% blocknode 'page/column-2.md' %}
## Leia
{% endblocknode %}
{% blocknode 'page/column-3.md' %}
## Han
{% endblocknode %}
I want do it like this
{% with forloop.counter|format:"page/column-%s.md" as uri %}
{% blocknode uri %}
## Luke
{% endblocknode %}
{% endwith %}
But got and error
Unknown plugin "None" or improperly configured pipeline for node "i18n://ru-ru@".
How to create a few nodes in a template with auto-generated names (e.g. for column design)
I want do it like this
But got and error