Django - Hide labels in inline

267 Views Asked by At

How to hide labels in Django inlines?

enter image description here

1

There are 1 best solutions below

1
On

When I got you right, you can set the verbose_name to empty string in your model by adding the Attribute

verbose_name=''

to your field like

street = models.CharField(max_length=512, verbose_name='')