Remove 'billing' from option labels

They were unnecessary it turned out.
This commit is contained in:
Pea Tyczynska
2021-02-01 14:05:10 +00:00
parent 0f6cbdf27e
commit 25534dbee3
2 changed files with 6 additions and 6 deletions

View File

@@ -1687,9 +1687,9 @@ class EditServiceNotesForm(StripWhitespaceForm):
class ServiceBillingDetailsForm(StripWhitespaceForm):
billing_contact_email_addresses = GovukTextInputField('Billing contact email addresses')
billing_contact_names = GovukTextInputField('Billing contact names')
billing_reference = GovukTextInputField('Billing reference')
billing_contact_email_addresses = GovukTextInputField('Contact email addresses')
billing_contact_names = GovukTextInputField('Contact names')
billing_reference = GovukTextInputField('Reference')
purchase_order_number = GovukTextInputField('Purchase order number')
notes = TextAreaField(validators=[])