I\'m using Google App Engine and Django templates. I have a table that I want to display the objects look something like:
Object Result: Items =
As a replacement for k,v in user.items on Google App Engine using django templates where user = {'a':1, 'b', 2, 'c', 3}
{% for pair in user.items %} {% for keyval in pair %} {{ keyval }}{% endfor %} {% endfor %}
a 1 b 2 c 3
pair = (key, value) for each dictionary item.