django-domande
django-domande copied to clipboard
selectable validators
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)