mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-05 20:18:24 -04:00
Add notes to edit billing details page
As per ticket and as per Caley's request, so everything can be edited together. Also pluralise labels for billing contact info, to indicate that putting multiple in is ok, and widen the input fields so that it is more comfortable to input multiple contact details.
This commit is contained in:
@@ -4,6 +4,8 @@
|
||||
{% from "components/page-footer.html" import page_footer %}
|
||||
{% from "components/form.html" import form_wrapper %}
|
||||
|
||||
{% from "components/textbox.html" import textbox %}
|
||||
|
||||
{% block service_page_title %}
|
||||
Change billing details
|
||||
{% endblock %}
|
||||
@@ -16,10 +18,17 @@
|
||||
) }}
|
||||
|
||||
{% call form_wrapper() %}
|
||||
{{ form.billing_contact_names }}
|
||||
{{ form.billing_contact_email_addresses }}
|
||||
{{ form.billing_reference }}
|
||||
{{ form.purchase_order_number }}
|
||||
{{ form.billing_contact_names(param_extensions={"classes": "govuk-!-width-full"}) }}
|
||||
{{ form.billing_contact_email_addresses(param_extensions={"classes": "govuk-!-width-full"}) }}
|
||||
{{ form.billing_reference(param_extensions={"classes": "govuk-!-width-full"}) }}
|
||||
{{ form.purchase_order_number(param_extensions={"classes": "govuk-!-width-full"}) }}
|
||||
{{ textbox(
|
||||
form.notes,
|
||||
rows=4,
|
||||
width='1-1',
|
||||
autofocus=True,
|
||||
autosize=True,
|
||||
) }}
|
||||
{{ page_footer('Save') }}
|
||||
{% endcall %}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user