Files
notifications-admin/app/templates/views/pricing/billing-details.html

139 lines
3.2 KiB
HTML
Raw Normal View History

{% extends "content_template.html" %}
{% from "components/page-header.html" import page_header %}
{% from "components/copy-to-clipboard.html" import copy_to_clipboard %}
{% block per_page_title %}
Billing details
{% endblock %}
{% block content_column_content %}
{{ page_header('Billing details') }}
<p class="govuk-body">
2023-01-05 21:33:15 -05:00
You can use the information on this page to add the Cabinet Office as a supplier. Your organization may need to do this before you can raise a purchase order (PO).
</p>
<p class="govuk-body">
2021-08-27 17:39:04 +01:00
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.support') }}">Contact us</a> if you need any other details.
</p>
2022-01-14 11:12:28 +00:00
<h2 class="heading-medium govuk-!-margin-top-7" id="supplier-details">
Supplier details
</h2>
<p class="govuk-body">
Cabinet Office
</p>
<p class="govuk-body">
The White Chapel Building <br>
10 Whitechapel High Street <br>
London <br>
E1 8QS
</p>
2022-01-14 11:12:28 +00:00
<h3 class="heading-small" id="email-addresses">
Email addresses
</h3>
<ul class="govuk-list govuk-list--bullet">
{% for email in billing_details['notify_billing_email_addresses'] %}
<li>
{{ email }}
</li>
{% endfor %}
</ul>
2022-01-14 11:12:28 +00:00
<h3 class="heading-small" id="vat-number">
<abbr title="Value Added Tax">VAT</abbr> number
</h3>
<div class="govuk-!-margin-bottom-4">
{{ copy_to_clipboard(
'GB 88 88 010 80',
thing='<abbr title="Value Added Tax">VAT</abbr> number',
) }}
</div>
2022-01-14 11:12:28 +00:00
<h2 class="heading-medium govuk-!-margin-top-7" id="bank-details">
Bank details
</h2>
<p class="govuk-body">
National Westminster Bank PLC (part of RBS group) <br>
Government Banking Services Branch <br>
2nd Floor <br>
280 Bishopsgate <br>
London <br>
EC2M 4RB
</p>
2022-01-14 11:12:28 +00:00
<h3 class="heading-small" id="account-name">
Account name
</h3>
<p class="govuk-body">
Cabinet Office
</p>
2022-01-14 11:12:28 +00:00
<h3 class="heading-small" id="account-number">
Account number
</h3>
<div class="govuk-!-margin-bottom-4">
{{ copy_to_clipboard(
billing_details['account_number'],
thing='account number',
) }}
</div>
2022-01-14 11:12:28 +00:00
<h3 class="heading-small" id="sort-code">
Sort code
</h3>
<div class="govuk-!-margin-bottom-4">
{{ copy_to_clipboard(
billing_details['sort_code'],
thing='sort code',
) }}
</div>
2022-01-14 11:12:28 +00:00
<h3 class="heading-small" id="iban">
<abbr title="International Bank Account Number">IBAN</abbr>
</h3>
<div class="govuk-!-margin-bottom-4">
{{ copy_to_clipboard(
billing_details['IBAN'],
thing='IBAN',
) }}
</div>
2022-01-14 11:12:28 +00:00
<h3 class="heading-small" id="swift-code">
Swift code
</h3>
<div class="govuk-!-margin-bottom-4">
{{ copy_to_clipboard(
billing_details['swift'],
thing='Swift code',
) }}
</div>
2022-01-14 11:12:28 +00:00
<h2 class="heading-medium govuk-!-margin-top-7" id="invoice-address">
Invoice address
</h2>
<p class="govuk-body">
SSCL Accounts Receivable <br>
PO Box 221 <br>
Thornton-Cleveleys <br>
Blackpool <br>
Lancashire <br>
FY1 9JN
</p>
{% endblock %}