From: yomguy Date: Thu, 20 Dec 2012 14:48:01 +0000 (+0100) Subject: question published by default X-Git-Tag: 0.9-probarreau~225 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=f8d9479512bced4a6137cbf9d4cb913735526ae3;p=teleforma.git question published by default --- diff --git a/teleforma/models/pro.py b/teleforma/models/pro.py index 8d41d800..59054075 100644 --- a/teleforma/models/pro.py +++ b/teleforma/models/pro.py @@ -153,7 +153,7 @@ class Question(models.Model): rank = models.IntegerField(_('rank'), blank=True, null=True) weight = models.IntegerField(_('weight'), choices=WEIGHT_CHOICES, default=1) min_nchar = models.IntegerField(_('minimum numbers of characters')) - status = models.IntegerField(_('status'), choices=STATUS_CHOICES, default=2) + status = models.IntegerField(_('status'), choices=STATUS_CHOICES, default=3) def __unicode__(self): return ' - '.join([unicode(self.seminar), self.title, str(self.rank)])