[Answer]-Django model form multiplechoice change or remove field

1👍

Hmm, while setting the label to empty string will work. Ideally you should place this sort of logic in your template. In this example below, I’m looping through the form field and displaying just the field input .

{% for field in form %}
    <div class="fieldWrapper">
        {{ field }}
    </div>
{% endfor %}

See https://docs.djangoproject.com/en/1.7/topics/forms/#looping-over-the-form-s-fields

Leave a comment