diff --git a/sponsors/forms.py b/sponsors/forms.py index 1a5fc229c..04cacd876 100644 --- a/sponsors/forms.py +++ b/sponsors/forms.py @@ -252,15 +252,15 @@ class SponsorshipApplicationForm(forms.Form): label="State/Province/Region", max_length=64, required=False ) state_of_incorporation = forms.CharField( - label="State of incorporation", help_text="US only, if different from registered state", max_length=64, required=False + label="State of incorporation", help_text="US only, If different", max_length=64, required=False ) postal_code = forms.CharField( label="Zip/Postal Code", max_length=64, required=False ) - country = CountryField().formfield(required=False) + country = CountryField().formfield(required=False, help_text="For mailing/contact purposes") country_of_incorporation = CountryField().formfield( - label="Country of incorporation", help_text="If different from registered country", required=False + label="Country of incorporation", help_text="For contractual purposes", required=False ) def __init__(self, *args, **kwargs): diff --git a/sponsors/models/sponsors.py b/sponsors/models/sponsors.py index feda8fc06..7b92b0a92 100644 --- a/sponsors/models/sponsors.py +++ b/sponsors/models/sponsors.py @@ -74,7 +74,7 @@ class Sponsor(ContentManageable): country = CountryField(default="", help_text="For mailing/contact purposes") assets = GenericRelation(GenericAsset) country_of_incorporation = CountryField( - verbose_name="Country of incorporation (If different)", blank=True, null=True + verbose_name="Country of incorporation (If different)", help_text="For contractual purposes", blank=True, null=True ) state_of_incorporation = models.CharField( verbose_name="US only: State of incorporation (If different)", diff --git a/templates/sponsors/new_sponsorship_application_form.html b/templates/sponsors/new_sponsorship_application_form.html index 9f7597650..29181f80f 100644 --- a/templates/sponsors/new_sponsorship_application_form.html +++ b/templates/sponsors/new_sponsorship_application_form.html @@ -94,7 +94,8 @@
{% render_field form.country %} @@ -103,6 +104,19 @@
+
+ {% render_field form.country_of_incorporation %}
+ {% if form.country_of_incorporation.help_text %}
+
+ {{ form.country_of_incorporation.help_text }}
+ {% endif %}
+
+
+ {% render_field form.state %}
+ {% if form.state_of_incorporation.help_text %}
+
+ {{ form.state_of_incorporation.help_text }}
+ {% endif %}
+