You can try this:

class AAForm(forms.ModelForm):
    fullname = forms.CharField(max_length=20,
error_messages={'required': 'Be there no name?'})
    class Meta:
        model = AuthorArtist

On Sep 22, 11:59 am, Donn <[EMAIL PROTECTED]> wrote:
> Hi,
> I would like to change the 'already exists' message when one adds a record
> that duplicates a unique one in the table.
> Nearest I can tell, the fields.error_messages do not offer a way to alter that
> message.
>
> Here's my basic code:
>
> class AAForm( ModelForm ):
>         def __init__(self,*args,**kwargs):
>                 super(AAForm, self).__init__(*args,**kwargs)
>                 self.fields['fullname'].error_messages = {
>                         'required':'Be there no name?',
>                         'already_exists':'blah' #<-- this one is a dud
>                         }
>         class Meta:
>                 model = AuthorArtist
> \d



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to