a few more organisation edits

This commit is contained in:
stvnrlly
2023-01-05 21:33:15 -05:00
parent b00fea05bc
commit 59d4f09d01
19 changed files with 53 additions and 53 deletions

View File

@@ -1134,7 +1134,7 @@ class RenameServiceForm(StripWhitespaceForm):
class RenameOrganisationForm(StripWhitespaceForm):
name = GovukTextInputField(
u'Organisation name',
u'Organization name',
validators=[
DataRequired(message='Cannot be empty'),
MustContainAlphanumericCharacters(),
@@ -1886,7 +1886,7 @@ class AdminSetOrganisationForm(StripWhitespaceForm):
self.organisations.choices = kwargs['choices']
organisations = GovukRadiosField(
'Select an organisation',
'Select an organization',
validators=[
DataRequired()
]

View File

@@ -18,7 +18,7 @@ def performance():
stats['organisations_using_notify'] = sorted(
[
{
'organisation_name': organisation_name or 'No organisation',
'organisation_name': organisation_name or 'No organization',
'count_of_live_services': len(list(group)),
}
for organisation_name, group in groupby(

View File

@@ -193,8 +193,8 @@ def live_services_csv():
column_names = OrderedDict([
('service_id', 'Service ID'),
('organisation_name', 'Organisation'),
('organisation_type', 'Organisation type'),
('organisation_name', 'Organization'),
('organisation_type', 'Organization type'),
('service_name', 'Service name'),
('consent_to_research', 'Consent to research'),
('contact_name', 'Main contact'),