I can see how to add an error message to a field when using forms, but what about model form?

This is my test model

class Author(models.Model):
    first_name = models.CharField(max_length=125)
    last_name = models.CharField(max_length=125)
    created = models.DateTimeField(auto_now_add=True)
    updated = models.DateTimeField(auto_now=True)

My model form

class AuthorForm(forms.ModelForm):
    class Meta:
        model = Author

The error message on the fields: first_name, and last_name is "This field is required". How do I change that in a model form?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

For simple cases, you can specify custom error messages

class AuthorForm(forms.ModelForm):
    first_name = forms.CharField(error_messages={'required': 'Please let us know what to call you!'})
    class Meta:
        model = Author
link|improve this answer
1  
Cool thanks. I did not know what would be the result of doing that. The documentation says "Declared fields will override the default ones generated by using the model attribute" so I should be good. I would also have to set the max_field again on the model form field. – iJK Aug 9 '10 at 4:04
4  
Is it really necessary to repeat field declarations in the form? How about the DRY principle django is proud of? – lewap Jan 27 '11 at 12:18
This doesn't work: code.djangoproject.com/ticket/13693 – fjsj Jan 24 at 3:19
feedback

I have wondered about this many times as well. That's why I finally wrote a small extension to the ModelForm class, which allows me to set arbitrary field attributes - including the error messages - via the Meta class. The code and explanation can be found here: http://blog.brendel.com/2012/01/django-modelforms-setting-any-field.html

You will be able to do things like this:

class AuthorForm(ExtendedMetaModelForm):
    class Meta:
        model = Author
        field_args = {
            "first_name" : {
                "error_messages" : {
                    "required" : "Please let us know what to call you!"
                }
            }
        }

I think that's what you are looking for, right?

link|improve this answer
This is a great way to do this. Certainly more DRY than redefining form fields. – suda Mar 9 at 12:23
feedback

the easyest way is to override the clean method:

class AuthorForm(forms.ModelForm):
   class Meta:
      model = Author
   def clean(self):
      if self.cleaned_data.get('name')=="":
         raise forms.ValidationError('No name!')
      return self.cleaned_data
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.