I use methods clean_fieldnamein my forms to validate data.
I use {{field.errors.as_text}}to output errors to templates. Each error message has an asterisk (the symbol "*") at the beginning of it. Is there a way to display verification messages without asterisks?
(No, I do not turn on the stars myself, I'm just raise ValidationError(u'text')from the method clean)
source
share