project/scipycon/registration/models.py
changeset 310 3541adaa5cd3
parent 309 861223798fa4
child 315 566e5f783e75
equal deleted inserted replaced
309:861223798fa4 310:3541adaa5cd3
   132     confirmed = models.BooleanField(
   132     confirmed = models.BooleanField(
   133         default=False, blank=True)
   133         default=False, blank=True)
   134 
   134 
   135     acco_confirmed = models.BooleanField(
   135     acco_confirmed = models.BooleanField(
   136         default=False, blank=True)
   136         default=False, blank=True)
   137   
   137 
       
   138     date_confirmed = models.DateTimeField(blank=True, null=True)
       
   139 
       
   140     confirmed_mail = models.BooleanField(
       
   141         default=False, blank=True)
       
   142 
       
   143     acco_confirmed_mail = models.BooleanField(
       
   144         default=False, blank=True)
       
   145 
   138     type = models.CharField(max_length=25, choices=PAYMENT_MODE_CHOICES,
   146     type = models.CharField(max_length=25, choices=PAYMENT_MODE_CHOICES,
   139                             verbose_name="Type", blank=True, null=True)
   147                             verbose_name="Type", blank=True, null=True)
   140 
   148 
   141     details = models.CharField(
   149     details = models.CharField(
   142         max_length=255, verbose_name="Details",
   150         max_length=255, verbose_name="Details",