changeset 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 fa7377d90160
children 5d48fd80f27d
files accounts/forms.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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):