Can I do something like this in the django templates ?:
firstList = ["foo", "bar"]
secondList = ["foo", "bar"]
for counter_one, _firstList in enumerate(firstList):
for counter_two, _secondList in enumerate(secondList):
if firstList[counter_one] == secondList[counter_two]:
print(firstList[counter_one])
Because if I could that would be super awesome :D
_firstListinstead offirstList[counter_one](same for_secondList,secondList[counter_two]) ?