@@ -38,9 +38,9 @@ class NomCom(models.Model):
3838 upload_to = upload_path_handler , blank = True , null = True )
3939
4040 group = models .ForeignKey (Group )
41- send_questionnaire = models .BooleanField (verbose_name = 'Send automatically questionnaires"' ,
42- help_text = 'If you check this box, questionnaires are sent automatically after nominations' )
43- reminder_interval = models .PositiveIntegerField (help_text = 'If the nomcom user the interval field then a cron command will \
41+ send_questionnaire = models .BooleanField (verbose_name = 'Send questionnaires automatically"' , default = False ,
42+ help_text = 'If you check this box, questionnaires are sent automatically after nominations' )
43+ reminder_interval = models .PositiveIntegerField (help_text = 'If the nomcom user sets the interval field then a cron command will \
4444 send reminders to the nominees who have not responded using \
4545 the following formula: (today - nomination_date) % interval == 0' ,
4646 blank = True , null = True )
@@ -142,7 +142,7 @@ class Position(models.Model):
142142 description = models .TextField (verbose_name = 'Description' )
143143 requirement = models .ForeignKey (DBTemplate , related_name = 'requirement' , null = True , editable = False )
144144 questionnaire = models .ForeignKey (DBTemplate , related_name = 'questionnaire' , null = True , editable = False )
145- is_open = models .BooleanField (verbose_name = 'Is open' )
145+ is_open = models .BooleanField (verbose_name = 'Is open' , default = False )
146146 incumbent = models .ForeignKey (Email , null = True , blank = True )
147147
148148 objects = PositionManager ()
0 commit comments