Skip to content

Commit

Permalink
update help text
Browse files Browse the repository at this point in the history
  • Loading branch information
elichad committed Nov 21, 2023
1 parent 7551f70 commit 4240ba0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
),
),
]
7 changes: 5 additions & 2 deletions amy/workshops/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 4240ba0

Please sign in to comment.