mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-24 08:16:51 -04:00
a few more organisation edits
This commit is contained in:
@@ -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()
|
||||
]
|
||||
|
||||
@@ -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(
|
||||
|
||||
@@ -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'),
|
||||
|
||||
Reference in New Issue
Block a user