I\'m passing two lists to a template. Normally if I was iterating over a list I would do something like this
{% for i in list %}
but I hav
I ended up having to do this:
{% for x in x_list %} {% for y in y_list %} {% if forloop.counter == forloop.parentloop.counter %} Do Something {% endif %} {% endfor %} {% endfor %}