I use clean_fieldname
methods in my forms to validate data.
I use {{field.errors.as_text}}
to output errors to templates. Every error message has an asterisk ("*" symbol) at the beginning of it. Is there any way to output validation messages without asterisks?
(No, I don't include asterisks myself, i just raise ValidationError(u'text')
from the clean
method)