Définir Lable of Field Django
def __init__(self, *args, **kwargs):
super(YourFormSuper, self).__init__(*args, **kwargs)
self.fields['field_key'].label = "Your custom lable"
Bloody Batfish