Skip to content

Commit 2869363

Browse files
feat(#2905): Update verbiage on registration codes, training form intro (#2927)
1 parent ebfc4a8 commit 2869363

File tree

5 files changed

+13
-14
lines changed

5 files changed

+13
-14
lines changed

src/extforms/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class TrainingRequestCreate(
2929
):
3030
model = TrainingRequest
3131
form_class = TrainingRequestForm
32-
page_title = "Instructor Training Profile Creation Form"
32+
page_title = "Carpentries Profile Creation Form"
3333
template_name = "forms/trainingrequest.html"
3434
success_url = reverse_lazy("training_request_confirm")
3535
autoresponder_subject = "Thank you for your application"

src/extrequests/migrations/0038_alter_selforganisedsubmission_member_code_and_more.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ class Migration(migrations.Migration):
1515
field=models.CharField(
1616
blank=True,
1717
default="",
18-
help_text="If you are affiliated with a Carpentries member or partner organization, please enter your "
19-
"registration code.",
18+
help_text="If you are affiliated with a Carpentries Member or Partner organisation, "
19+
"please enter your registration code.",
2020
max_length=40,
2121
verbose_name="Registration code",
2222
),
@@ -62,8 +62,8 @@ class Migration(migrations.Migration):
6262
field=models.CharField(
6363
blank=True,
6464
default="",
65-
help_text="If you are affiliated with a Carpentries member or partner organization, please enter your"
66-
" registration code.",
65+
help_text="If you are affiliated with a Carpentries Member or Partner organisation, "
66+
"please enter your registration code.",
6767
max_length=40,
6868
verbose_name="Registration code",
6969
),

src/templates/forms/trainingrequest.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
{% block content %}
1010

11-
<p>Trainees selected by Carpentries member or partner organizations are asked to complete this <b>Instructor Training Profile Creation Form</b>. This creates an entry in our database and allows us to record attendance and track your progress through the Instructor certification process. Form responses are not reviewed in detail but may be used in programmatic assessment. Your application materials and information about your progress towards The Carpentries Instructor certification may be shared with our contacts at your member or partner site. Please note that this form is separate from event registration. Your site contact will provide you with instructions to register for an Instructor Training event. </p>
11+
<p>Trainees selected by Carpentries Member or Partner Organisations are asked to complete this <b>Carpentries Profile Creation Form</b>. This creates an entry in our database and allows us to record attendance and track your progress through the Instructor certification process. Form responses are not reviewed in detail but may be used in programmatic assessment. Your application materials and information about your progress towards The Carpentries Instructor certification may be shared with our contacts at your member or partner site. Please note that this form is separate from event registration. Your site contact will provide you with instructions to register for an Instructor Training event. </p>
1212

1313
<p> More details about the Instructor role are available on the <a href="https://carpentries.org/become-instructor/">Become an Instructor</a> page on The Carpentries website. To learn more about what the training will cover, please see our <a href="http://carpentries.github.io/instructor-training/">Instructor Training curriculum</a>.
1414
</p>

src/workshops/migrations/0292_alter_trainingrequest_member_code_and_more.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ class Migration(migrations.Migration):
1515
field=models.CharField(
1616
blank=True,
1717
default="",
18-
help_text="If you have been given a registration code through a Carpentries member or partner site or "
19-
"for a specific scheduled event, please enter it here:",
18+
help_text="If you have been given a registration code through a Carpentries Member or Partner site "
19+
"or for a specific scheduled event, please enter it here:",
2020
max_length=100,
2121
verbose_name="Registration Code",
2222
),
@@ -62,8 +62,8 @@ class Migration(migrations.Migration):
6262
field=models.CharField(
6363
blank=True,
6464
default="",
65-
help_text="If you are affiliated with a Carpentries member or partner organization, please enter your "
66-
"registration code.",
65+
help_text="If you are affiliated with a Carpentries Member or Partner organisation, "
66+
"please enter your registration code.",
6767
max_length=40,
6868
verbose_name="Registration code",
6969
),

src/workshops/models.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2181,9 +2181,8 @@ class TrainingRequest(
21812181
null=False,
21822182
max_length=STR_LONG,
21832183
verbose_name="Registration Code",
2184-
help_text="If you have been given a registration code through "
2185-
"a Carpentries member or partner site or for a specific scheduled "
2186-
"event, please enter it here:",
2184+
help_text="If you have been given a registration code through a Carpentries Member or Partner site or for "
2185+
"a specific scheduled event, please enter it here:",
21872186
)
21882187
member_code_override = models.BooleanField(
21892188
null=False,
@@ -2973,7 +2972,7 @@ class CommonRequest(SecondaryEmailMixin, models.Model):
29732972
null=False,
29742973
default="",
29752974
verbose_name="Registration code",
2976-
help_text="If you are affiliated with a Carpentries member or partner organization, "
2975+
help_text="If you are affiliated with a Carpentries Member or Partner organisation, "
29772976
"please enter your registration code.",
29782977
)
29792978

0 commit comments

Comments
 (0)