File diff 68ce94a7edbc → 32b20ed05917
pinaxcon/proposals/models.py
Show inline comments
...
 
@@ -71,12 +71,21 @@ class ConferenceSpeaker(SpeakerBase):
 
        verbose_name=_("Diversity statement"),
 
        help_text=_("If you are a member of one or more groups that are "
 
                    "under-represented in the tech industry, you may list "
 
                    "these here. Your response is optional."),
 
    )
 

	
 
    reviewer = models.EmailField(
 
        blank=True,
 
        null=True,
 
        verbose_name=_("E-mail of video reviewer"),
 
        help_text=_("Include the e-mail address of someone who can watch a "
 
                    "video of your talk, shortly after the video is produced, "
 
                    "to ensure quality."),
 
        )
 

	
 
    code_of_conduct = models.BooleanField(
 
        default=False,
 
        help_text=_("I have read and, in the event that my proposal is "
 
                    "accepted, agree that I will comply with the "
 
                    "<a href='/code-of-conduct'>Code of Conduct</a>."),
 
    )