diff --git a/vendor/symposion/speakers/models.py b/vendor/symposion/speakers/models.py index 5f2a86a679da49de6a4b154dd1164de487ad3e02..2f9aec2b1232a8eff0b521cfed8ce31d54448958 100644 --- a/vendor/symposion/speakers/models.py +++ b/vendor/symposion/speakers/models.py @@ -26,6 +26,10 @@ class Speaker(models.Model): name = models.CharField(verbose_name=_("Name"), max_length=100, help_text=_("As you would like it to appear in the" " conference programme.")) + pronouns = models.CharField(verbose_name=_("Pronouns"), + max_length=20, + blank=True, + ) biography = models.TextField( blank=True, help_text=_("This will appear on the conference website and in the " @@ -68,6 +72,11 @@ class Speaker(models.Model): blank=True, help_text=_(u"Your Twitter account") ) + mastodon_username = models.CharField( + max_length=100, + blank=True, + help_text=_(u"Your Mastodon account") + ) accessibility = models.TextField( blank=True, help_text=_("Let us know how we can help you during the conference, for example " @@ -78,7 +87,7 @@ class Speaker(models.Model): travel_assistance = models.BooleanField( blank=True, default=False, - help_text=_("Check this box if you require assistance to travel to linux.conf.au " + help_text=_("Check this box if you require assistance to travel to the conference " "in order to present your proposed sessions."), verbose_name=_("Travel assistance required"), ) @@ -92,7 +101,7 @@ class Speaker(models.Model): assistance = models.TextField( blank=True, help_text=_("We have budget set aside to provide financial assistance to " - "linux.conf.au speakers and attendees who might otherwise find it difficult to attend. " + "speakers and attendees who might otherwise find it difficult to attend. " "Please provide details on why you require travel and/or accommodation assistance " "in order to present your proposed sessions. " "For travel assistance, please also tell us where you will be coming from "