Update attendee profile

Remove reference to Open Hardware kit as this is not happening in 2023.
Set lca_announce field to default of False given field is hidden.
This commit is contained in:
Joel Addison 2023-02-11 14:09:03 +10:00
parent 6bd1ab9f8f
commit 630f50c452

View file

@ -91,9 +91,9 @@ class AttendeeProfile(rego.AttendeeProfileBase):
max_length=64, max_length=64,
verbose_name="Free text line 1", verbose_name="Free text line 1",
help_text="A line of free text that will appear on your badge. Use " help_text="A line of free text that will appear on your badge. Use "
"this for your Twitter handle, IRC nick, your preferred " "this for your Mastodon or Twitter handle, IRC nick, "
"pronouns or anything else you'd like people to see on " "your preferred pronouns or anything else you'd like people "
"your badge.", "to see on your badge.",
blank=True, blank=True,
) )
free_text_2 = models.CharField( free_text_2 = models.CharField(
@ -114,9 +114,7 @@ class AttendeeProfile(rego.AttendeeProfileBase):
address_line_1 = models.CharField( address_line_1 = models.CharField(
verbose_name="Address line 1", verbose_name="Address line 1",
help_text="This address, if provided, will appear on your invoices. " help_text="This address, if provided, will appear on your invoices.",
"It is also where we will ship your Open Hardware Kit "
"if you are allocated one.",
max_length=1024, max_length=1024,
blank=True, blank=True,
) )
@ -195,6 +193,7 @@ class AttendeeProfile(rego.AttendeeProfileBase):
help_text="Select to be subscribed to the low-traffic lca-announce " help_text="Select to be subscribed to the low-traffic lca-announce "
"mailing list", "mailing list",
blank=True, blank=True,
default=False,
) )
lca_chat = models.BooleanField( lca_chat = models.BooleanField(