From 1ec5e9f6c8a4c1a4a3672c5086cc545e4f13e147 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sat, 11 Jan 2020 13:07:18 +0100 Subject: [PATCH] small changes --- rowers/templates/survey2.html | 2 +- survey/models.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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)' )