Skip to content

Instantly share code, notes, and snippets.

@demoore
Created November 14, 2014 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save demoore/438c9f74de6a638b5ac4 to your computer and use it in GitHub Desktop.
Save demoore/438c9f74de6a638b5ac4 to your computer and use it in GitHub Desktop.
<html>
<head></head>
<body>
<h2>Keys</h2>
<ul>
{% for key in items %}
<li>{{ key }}</li>
{% endfor %}
</ul>
<h2>iteritems</h2>
<ul>
{% for key,value in items.iteritems() %}
<li>{{ key }} — {{ value }}</li>
{% endfor %}
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment