File diff 8d95a608dd50 → 0015814518e3
pinaxcon/registrasion/models.py
Show inline comments
...
 
@@ -114,24 +114,25 @@ class AttendeeProfile(rego.AttendeeProfileBase):
 
    )
 
    country = CountryField(
 
        default="US",
 
    )
 
    state = models.CharField(
 
        max_length=256,
 
        verbose_name="State/Territory/Province",
 
        blank=True,
 
    )
 

	
 
    dietary_restrictions = models.CharField(
 
        verbose_name="Food allergies, intolerances, or dietary restrictions",
 
        help_text="For example: vegetarian, vegan, gluten intolerant, low carb, allergic to _____, …",
 
        max_length=256,
 
        blank=True,
 
    )
 

	
 
    agreement = models.BooleanField(
 
        verbose_name="Agreement",
 
        help_text="I agree to act according to the <a href='/code-of-conduct'>"
 
                  "Code of Conduct</a>. I also agree with the "
 
                  "CopyleftConf <a href='/terms'>Terms and Conditions</a>.",
 
        blank=False,
 
        default=False,
 
    )