File diff 4c7f0edd6071 → 8d95a608dd50
pinaxcon/registrasion/models.py
Show inline comments
...
 
@@ -126,29 +126,12 @@ class AttendeeProfile(rego.AttendeeProfileBase):
 
        max_length=256,
 
        blank=True,
 
    )
 
    accessibility_requirements = models.CharField(
 
        verbose_name="Accessibility-related requirements",
 
        max_length=256,
 
        blank=True,
 
    )
 
    gender = models.CharField(
 
        help_text="Gender data will only be used for demographic purposes.",
 
        max_length=64,
 
        blank=True,
 
    )
 

	
 
    newsletter = models.BooleanField(
 
        verbose_name="Subscribe to North Bay Python newsletter",
 
        help_text="Select to be subscribed to the low-volume North Bay Python "
 
                  "announcements newsletter",
 
        blank=True,
 
    )
 

	
 
    agreement = models.BooleanField(
 
        verbose_name="Agreement",
 
        help_text="I agree to act according to the <a href='/code-of-conduct'> "
 
                  "North Bay Python Code of Conduct</a>. I also agree with the "
 
                  "North Bay Python <a href='/terms'>Terms and Conditions</a>.",
 
        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,
 
    )