Вы можете добавить его внутрь Meta
.как показано ниже
из django.utils.translation import gettext_lazy как _
class AuthorForm(ModelForm):
class Meta:
model = Author
fields = ('name', 'title', 'birth_date')
labels = {
'name': _('Writer'),
}
help_texts = {
'name': _('Some useful help text.'),
}
error_messages = {
'name': {
'max_length': _("This writer's name is too long."),
},
}
(см. django docs
Также вы можете добавить с помощью __init__
метод. Как показано ниже
class EventForm(forms.ModelForm):
def __init__(self, *args, **kwargs):
super(EventForm, self).__init__(*args, **kwargs)
self.fields['category'].help_text = ''