File diff bef463701667 → a5cd6ab63b9a
www/conservancy/apps/summit_registration/models.py
Show inline comments
...
 
@@ -9,7 +9,7 @@ class SummitRegistration(models.Model):
 
    email = models.EmailField(blank=True)
 
    phone = models.CharField(max_length=100, blank=True)
 
    date_created = models.DateField(auto_now_add=True)
 
    cle_credit = models.BooleanField(null=True)
 
    cle_credit = models.BooleanField(default=True)
 

	
 
    class Meta:
 
        ordering = ('name',)