Private
Public Access
1
0

small changes

This commit is contained in:
Sander Roosendaal
2020-01-11 13:07:18 +01:00
parent 5811b860d1
commit 1ec5e9f6c8
2 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ frm.submit(function(e) {
<table>
{{ form.as_table }}
</table>
<input type="submit" name="submit" value="SUBMIT">
<input type="submit" name="submit" value="CONTINUE">
</li>
</ul>

View File

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