Increase column size

EmailTemplateFixes
Griffin Caprio 2015-01-07 17:52:12 -06:00
parent f30492472a
commit 978bae6e97
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ class QuestionSet(models.Model):
questionnaire = models.ForeignKey(Questionnaire) questionnaire = models.ForeignKey(Questionnaire)
sortid = models.IntegerField() # used to decide which order to display in sortid = models.IntegerField() # used to decide which order to display in
heading = models.CharField(max_length=64) heading = models.CharField(max_length=64)
checks = models.CharField(max_length=128, blank=True, checks = models.CharField(max_length=256, blank=True,
help_text = """Current options are 'femaleonly' or 'maleonly' and shownif="QuestionNumber,Answer" which takes the same format as <tt>requiredif</tt> for questions.""") help_text = """Current options are 'femaleonly' or 'maleonly' and shownif="QuestionNumber,Answer" which takes the same format as <tt>requiredif</tt> for questions.""")
text = models.TextField(u'Text', help_text="This is interpreted as Textile: <a href='http://en.wikipedia.org/wiki/Textile_%28markup_language%29' target='_blank'>http://en.wikipedia.org/wiki/Textile_(markup_language)</a>") text = models.TextField(u'Text', help_text="This is interpreted as Textile: <a href='http://en.wikipedia.org/wiki/Textile_%28markup_language%29' target='_blank'>http://en.wikipedia.org/wiki/Textile_(markup_language)</a>")