diff --git a/pinaxcon/registrasion/forms.py b/pinaxcon/registrasion/forms.py index d3120a9674e02db3f33839bca2abeaf3a5b8b865..6f5c2c8cb1d6412f653e8bcee06a066b8e7a9646 100644 --- a/pinaxcon/registrasion/forms.py +++ b/pinaxcon/registrasion/forms.py @@ -28,6 +28,8 @@ class ProfileForm(forms.ModelForm): 'lca_announce', 'lca_chat', 'future_conference', + 'linux_australia', + 'past_lca', ] widgets = { 'past_lca': forms.widgets.CheckboxSelectMultiple diff --git a/pinaxcon/registrasion/models.py b/pinaxcon/registrasion/models.py index e10c59d534e0c393bc9a32fb000df87067932e71..276641e28a87dd7f7a6cea4dae526ebdae2196f6 100644 --- a/pinaxcon/registrasion/models.py +++ b/pinaxcon/registrasion/models.py @@ -140,7 +140,6 @@ class AttendeeProfile(rego.AttendeeProfileBase): state = models.CharField( max_length=256, verbose_name="State/Territory/Province", - help_text="If your Country is Australia, you must list a state.", blank=True, ) diff --git a/vendor/registrasion/registrasion/views.py b/vendor/registrasion/registrasion/views.py index 0e6e442ec722bde222e0d25b7c12531450a2f695..99b8bbd75c0d304191e1e05f3e840eb44e09e829 100644 --- a/vendor/registrasion/registrasion/views.py +++ b/vendor/registrasion/registrasion/views.py @@ -348,7 +348,7 @@ def _guided_registration_profile_and_voucher(request): title="Profile and Personal Information", form=profile_form, description=("
You can come back and edit these details any time before " - "March 10 2023.
"), + "June 6 2023."), ) return [voucher_section, profile_section]