I have a dictionary
data = {\'sok\': [ [1, 10] ], \'sao\': [ [1, 10] ],\'sok&sao\':[ [2,20]] }
How Can I (Loop trough Dictionary ) pres
In a project im working on now, i have had the same problem, thanks to your replies i've ended up doing something like this and it worked fine:
author qty Amount {% for k,v in resultado.iteritems %} {{ k }} {{ v[0] }} {{ v[1] }} {% endfor %}