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 trial

Python Django Forms Forms Create a Validator

Omprakash Panigrahi
Omprakash Panigrahi
9,632 Points

Custom validation error

I am getting error with the code. Do I have to use regex for this and if i have to, then do i import re too?

myproject/forms.py
from django import forms

def not_treehouse(str):
    s = str.lower()
    if(s.endswith("@teamtreehouse.com")):
        raise ValidationError("teamtreehouse member")

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

You should apply the function to the below form by adding "validators=[not_treehouse]" to the honeypot field. BTW, I used the following method: def not_treehouse(value): value_lower = value.lower() if "@teamtreehouse.com" in value_lower: raise forms.ValidationError("The email is from Treehouse")