[Answered ]-Django breadcrumb html tag define list in include tag

1👍

As long as there are no spaces in the breadcrumb names:

{% with '1 2 3' as list %}
  {% for i in list.split %}
    {{ i }}<br>
  {% endfor %}
{% endwith %}

Leave a comment