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
Maybe help someone.
template.html
{{ form.field_name.label_tag }}
{% for pk, choice in form.field_name.field.widget.choices %}
{% endfor %}
{{ form.field_name.label_tag }}
{% for pk, choice in form.field_name.field.widget.choices %}
{% endfor %}
How to custom checkbox and radio in Django using Bootstrap