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 trialkudakwashe jamu
8,317 Pointsam getting bummer
Challenge Task 2 of 2 Alright, now that we have the validator, we need to use it!
Add the not_treehouse validator to LeadShareForm's email field. Remember, validators is an iterable.
from django import forms
def not_treehouse(value):
if "@teamtreehouse.com".lower() in value.lower():
raise forms.ValidationError('hey!!')
return value
class LeadShareForm(forms.Form):
email = forms.EmailField()
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
1 Answer
KRIS NIKOLAISEN
54,971 PointsIf you watch the previous video @3:09 or follow the link in the teacher's notes you can find some examples of what the task is asking.
Here is one:
from django import forms
class MyForm(forms.Form):
even_field = forms.IntegerField(validators=[validate_even])
This adds the validate_even
validator to the even_field
field.
The task wants you to add the not_treehouse
validator to the email
field. So using the above you would have
email = forms.EmailField(validators=[not_treehouse])