{% for repo in repo_info %}
{% for branch in branch_info[forloop.counter] %}
<li>Branch Name --> {{ branch }}</li>
{% endfor %}
{% endfor %}
branch_info
is a list of lists.
It gives me error that could not parse the remainder on this ---> branch_info[forloop.counter]
Is there any way to parse over the list elements which are also a list?