Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialY B
14,136 PointsDjango forms validators- passing in custom validator
I can't get this to pass for some reason when passing in the custom validator?
from django import forms
class LeadShareForm(forms.Form):
email = forms.EmailField(validators=[not_treehouse])
link = forms.URLField()
honeypot = forms.CharField(widget=forms.HiddenInput, required=False)
def clean_honeypot(self):
honey = self.cleaned_data['honeypot']
if len(honey):
raise forms.ValidationError('Bad robot!')
return honey
from django import forms
def not_treehouse(email):
domain = email.split('@')[1]
domain = domain.lower()
if domain == 'teamtreehouse.com':
raise forms.ValidationError('error')
1 Answer
Benjamin Lange
16,178 PointsYou're really close!! It looks like you need to put your custom validation method (not_treehouse) above the form class (LeadShareForm). Files are evaluated from top to bottom, so if the not_treehouse method is below the LeadShareForm where it is used, it won't know that it exists yet.
Y B
14,136 PointsY B
14,136 PointsSilly me thanks!