It is possible, but a little more complicated.
You can use {% include ... %} to process nested arrays, which from the comments I read are what you need to do.
Consider the following code:
nested_array_display.html
<ul> {% for key, val in arr %} <li> {{ key }}: {% if val is iterable %} {% include 'nested_array_display.html' %} {% else %} {{ val }} {% endif %} </li> {% endfor %} </ul>
Xesau
source share