fix: removed similarity validation

This commit is contained in:
Rushil Umaretiya 2021-02-18 21:53:07 -05:00
parent 296dac5599
commit 3a97b74639
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959

View File

@ -15,10 +15,10 @@ class Team(models.Model):
def __str__(self): def __str__(self):
return self.name return self.name
def clean(self): # def clean(self):
# Don't allow teams to have the same name. # # Don't allow teams to have the same name.
if Team.objects.filter(name=self.name).count() > 0: # if Team.objects.filter(name=self.name).count() > 0:
raise ValidationError({'name': 'That name is already taken! Sorry.'}) # raise ValidationError({'name': 'That name is already taken! Sorry.'})
class Competitor(models.Model): class Competitor(models.Model):
name = models.CharField(max_length=20, blank=True, default='') name = models.CharField(max_length=20, blank=True, default='')
@ -36,10 +36,10 @@ class Competitor(models.Model):
def __str__(self): def __str__(self):
return self.name return self.name
def clean(self): # def clean(self):
# Don't allow teams to have the same name. # # Don't allow teams to have the same name.
if Competitor.objects.filter(name=self.name).count() > 0: # if Competitor.objects.filter(name=self.name).count() > 0:
raise ValidationError({'name': 'Somebody with that name is already registered!'}) # raise ValidationError({'name': 'Somebody with that name is already registered!'})
if Competitor.objects.filter(email=self.email).count() > 0: # if Competitor.objects.filter(email=self.email).count() > 0:
raise ValidationError({'email': 'Somebody with that email is already registered!'}) # raise ValidationError({'email': 'Somebody with that email is already registered!'})