'Django - Hide labels in inline

How to hide labels in Django inlines?

enter image description here



Solution 1:[1]

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='')

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 grisuu