Adding a label_suffix to ModelForm

django, django-forms, forms

Solution

When the form is instantiated, you can pass `label_suffix` into it as follows:

list_form = ListForm(label_suffix="")

Problem

How do I change the `label_suffix` on a `ModelForm`? I want the model form to remove ":" from all labels.

Original source