Is there any get() function for this instead?
{% for key, value in choices.items %} {{key}} - {{value}} {% endfor %}
If you want a specific value, just add it to the dotted-path:
{{ choices.items.somekey }}
will get you the value of choices.items['somekey'] if choices.items is a dict.
choices.items['somekey']
choices.items
dict