I have a ModelForm with a multiple choice field. The choices are populated instances of Hikers belonging to a specific Club.
I want to customize the way my form displays
Try this solution :
{% for choice in form.my_choice_field.field.choices %} {{choice.1}} {% endfor %}
see this link : http://www.ilian.io/django-forms-choicefield-and-custom-html-output/