Skip to content

Instantly share code, notes, and snippets.

@fchevitarese
Created September 17, 2015 13:47
Show Gist options
  • Save fchevitarese/f110a4d7c37a328e2733 to your computer and use it in GitHub Desktop.
Save fchevitarese/f110a4d7c37a328e2733 to your computer and use it in GitHub Desktop.
clean_method.py
def clean(self, value):
# super(UserField, self).clean(value)
# instance = getattr(self, 'instance', None)
# if instance is None:
# try:
# User.objects.get(email=value)
# raise forms.ValidationError(
# "Someone is already using this email. Please pick an other.")
# except User.DoesNotExist:
# return value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment