class SomeForm(forms.ModelForm):
class Meta:
mode = SomeModel
fields = ('one_field', 'another_field')
labels = {
'one_field': 'the Label is different from the field name in the model',
}
widgets = {
'another_field': forms.TextInput(attrs={'class': 'some-class', 'placeholder': 'Lorem ipsum'}),
}