Created
October 22, 2017 19:06
-
-
Save xsaamiir/73195015a5f51a7cdbc7dad59413c590 to your computer and use it in GitHub Desktop.
Jinja template iterate over a dictionary
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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