-
+
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)'
)