Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxkathirvel/001a92927c7e50ed43e1f4361acea8ad to your computer and use it in GitHub Desktop.
Save linuxkathirvel/001a92927c7e50ed43e1f4361acea8ad to your computer and use it in GitHub Desktop.
Custom unique error message to Django model form for already exists error

Custom unique error message to Django model form for already exists error

# forms.py
class Meta:
  error_messages = {
    'mobile': {
      'unique': _("Mobile number already exists."),
    },
    'email': {
      'unique': _("Email already exists."),
    },
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment