db model for dynamic stylesheet support

dj111py38
Jamie Campbell 2015-12-14 01:46:32 -06:00
parent 63ecc60740
commit c618a30b44
1 changed files with 4 additions and 0 deletions

View File

@ -93,6 +93,10 @@ class Questionnaire(models.Model):
class DBStylesheet(models.Model):
#Questionnaire max length of name is 128; Questionset max length of heading
#is 64, and Question associative information is id which is less than 128
#in length
inclusion_tag = models.CharField(max_length=128)
content = models.TextField()
class QuestionSet(models.Model):