Skip to content

Instantly share code, notes, and snippets.

@artisandhq
Created December 9, 2020 06:41
Show Gist options
  • Save artisandhq/50623a6e43ea2db7b1cb059c0a009324 to your computer and use it in GitHub Desktop.
Save artisandhq/50623a6e43ea2db7b1cb059c0a009324 to your computer and use it in GitHub Desktop.
How to iterate through dict in Django template
{% for key, value in test_codes_dict.items %}
<option value="{{ key }}">{{ value }}</option>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment