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 %}
Source:stackexchange.com