diff --git a/amy/workshops/migrations/0268_trainingrequest_eventbrite_url.py b/amy/workshops/migrations/0268_trainingrequest_eventbrite_url.py index 716884719..42bb67acf 100644 --- a/amy/workshops/migrations/0268_trainingrequest_eventbrite_url.py +++ b/amy/workshops/migrations/0268_trainingrequest_eventbrite_url.py @@ -15,7 +15,8 @@ class Migration(migrations.Migration): field=models.URLField( blank=True, default="", - verbose_name="If you have already registered for an event through Eventbrite, enter the URL of that event.", + verbose_name="Eventbrite URL", + help_text="If you are registering or have registered for a training event through Eventbrite, enter the URL of that event. You can find this on the registration page or in the confirmation email. If you have not yet registered for an event, leave this field blank.", ), ), ] diff --git a/amy/workshops/models.py b/amy/workshops/models.py index 45c7c5823..7e193cf78 100644 --- a/amy/workshops/models.py +++ b/amy/workshops/models.py @@ -2138,8 +2138,11 @@ class TrainingRequest( null=False, blank=True, default="", - verbose_name="If you have already registered for an event through Eventbrite, " - "enter the URL of that event.", + verbose_name="Eventbrite URL", + help_text="If you are registering or have registered for a training event " + "through Eventbrite, enter the URL of that event. You can find this on the " + "registration page or in the confirmation email. " + "If you have not yet registered for an event, leave this field blank.", ) personal = models.CharField(