Mercurial > public > sg101
diff accounts/forms.py @ 794:f416f5db3d91
Improve accounts registration question 7 error message.
One potential user thought it was referring to the combo box
above it on the form, not the checkboxes.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 27 May 2014 15:06:38 -0500 |
parents | 9133b4626a4b |
children | 79a71b9d0a2a |
line wrap: on
line diff
--- a/accounts/forms.py Mon May 26 19:34:49 2014 -0500 +++ b/accounts/forms.py Tue May 27 15:06:38 2014 -0500 @@ -172,7 +172,7 @@ answer = self.cleaned_data.get('question7') answer.sort() if answer != [u'2', u'4', u'5', u'7']: - self._validation_error("Sorry, try again", answer) + self._validation_error("Please double-check your checkboxes", answer) return answer def save(self):