diff --git a/rowers/admin.py b/rowers/admin.py index 26c6d660..fd8ab271 100644 --- a/rowers/admin.py +++ b/rowers/admin.py @@ -32,7 +32,7 @@ class RowerInline(admin.StackedInline): {'fields':('paidplan','rowerplan','paymenttype','planexpires','teamplanexpires','protrialexpires','plantrialexpires','clubsize','offercoaching')}), ('Rower Settings', {'fields': - ('gdproptin','gdproptindate','weightcategory','sex','adaptiveclass','birthdate','getemailnotifications', + ('surveydone','surveydonedate','gdproptin','gdproptindate','weightcategory','sex','adaptiveclass','birthdate','getemailnotifications', 'getimportantemails','emailbounced','defaultlandingpage', 'defaulttimezone','showfavoritechartnotes')}), ('Rower Zones', diff --git a/rowers/templates/survey.html b/rowers/templates/survey.html index 1e5fc0fb..39433159 100644 --- a/rowers/templates/survey.html +++ b/rowers/templates/survey.html @@ -36,7 +36,7 @@ frm.submit(function(e) { {{ form.as_table }}
- + diff --git a/rowers/templates/survey2.html b/rowers/templates/survey2.html index a59c8179..109fc78e 100644 --- a/rowers/templates/survey2.html +++ b/rowers/templates/survey2.html @@ -32,7 +32,7 @@ frm.submit(function(e) { {{ form.as_table }}
- + diff --git a/survey/models.py b/survey/models.py index 00284a9c..0a86ea6d 100644 --- a/survey/models.py +++ b/survey/models.py @@ -52,7 +52,7 @@ class Response(models.Model): capabilities = models.NullBooleanField(default=None,null=True,blank=True, verbose_name='Did you get the capabilities and features that you expected out of Rowsandall') - fallshort = models.TextField(max_length=300,blank=True,verbose_name='Where did Rowsandall fall short of your expectations?') + fallshort = models.TextField(max_length=500,blank=True,verbose_name='Where did Rowsandall fall short of your expectations?') considerchoices = ( ('no','No'), @@ -64,7 +64,7 @@ class Response(models.Model): considered = models.CharField(max_length=150,choices=considerchoices,default=None,null=True,blank=True, verbose_name='If you are on a Free plan, did you consider one of the paid plans?') - features = models.TextField(max_length=300,blank=True, + features = models.TextField(max_length=500,blank=True, verbose_name="What combination of features would entice you to upgrade to a paid plan") agreechoices = ( @@ -120,6 +120,6 @@ class Response(models.Model): other = models.BooleanField(default=False,verbose_name='Other') suggestiontext = models.TextField( - max_length=300,default=None,null=True,blank=True, + max_length=500,default=None,null=True,blank=True, verbose_name='My suggestion is (please write a short description of your suggestion)' )