[Answer]-Django displaying selected items from multiple select in template

1👍

You want to loop the value of the field, not the field itself:

{% for recipient in form.recipients.value %}
    {{ recipient }}
{% endfor %}

Leave a comment