django-domande icon indicating copy to clipboard operation
django-domande copied to clipboard

selectable validators

Open bulkan opened this issue 13 years ago • 0 comments

Each Question should have a user selectable list of validators associated with it.

phone number, postcode, numbers only, letters only.

# inside of QuestionForm 

def answer_clean(self, value):
    for validator in self.question.validators:
         validator(value)

bulkan avatar Feb 27 '13 05:02 bulkan