Skip to content

Instantly share code, notes, and snippets.

@xsaamiir
Created October 22, 2017 19:06
Show Gist options
  • Save xsaamiir/73195015a5f51a7cdbc7dad59413c590 to your computer and use it in GitHub Desktop.
Save xsaamiir/73195015a5f51a7cdbc7dad59413c590 to your computer and use it in GitHub Desktop.
Jinja template iterate over a dictionary
<dl>
{% for key, value in _dict.iteritems() %}
<dt>{{ key }}</dt>
<dd>{{ value }}</dd>
{% endfor %}
</dl>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment