Remove Labels in a Django Crispy Forms

Ron picture Ron · Jul 13, 2012 · Viewed 17.8k times · Source

Does anybody know if there is a correct way to remove labels in a crispy form?

I got as far as this:

self.fields['field'].label = ""

But it's not a very nice solution.

Answer

Glyn Jackson picture Glyn Jackson · Jul 9, 2014

Just do:

self.helper.form_show_labels = False

To remove all labels.