[Answered ]-How to parse filters in inclusion_tag

2👍

Django from version 1.3 has “with” tag.
https://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs#with

Try this code

{% with list_length=list|length %}
    {% div_text list_length %}
{% endwith %}

Leave a comment