View edit organisation billing details page

This commit is contained in:
Pea Tyczynska
2021-02-05 11:56:05 +00:00
parent f4dc2a173e
commit 36c72bb4cc
5 changed files with 96 additions and 4 deletions

View File

@@ -0,0 +1,36 @@
{% from "components/page-header.html" import page_header %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/form.html" import form_wrapper %}
{% from "components/textbox.html" import textbox %}
{% extends "org_template.html" %}
{% block org_page_title %}
Edit organisation billing details
{% endblock %}
{% block maincolumn_content %}
{{ page_header(
'Edit organisation billing details',
back_link=url_for('.organisation_settings', org_id=current_org.id)
) }}
{% call form_wrapper() %}
{{ form.billing_contact_names(param_extensions={"classes": "govuk-!-width-full"}) }}
{{ form.billing_contact_email_addresses(param_extensions={"classes": "govuk-!-width-full"}) }}
<div class="extra-tracking">
{{ form.billing_reference(param_extensions={"classes": "govuk-!-width-full"}) }}
{{ form.purchase_order_number(param_extensions={"classes": "govuk-!-width-full"}) }}
</div>
{{ textbox(
form.notes,
rows=4,
width='1-1',
autofocus=False,
autosize=True,
) }}
{{ page_footer('Save') }}
{% endcall %}
{% endblock %}