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

139 lines
2.8 KiB
HTML
Raw Normal View History

{% extends "base.html" %}
2021-08-27 11:44:19 +01:00
{% 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') }}
2023-06-06 15:28:24 -04:00
<p>
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).
2021-08-27 11:44:19 +01:00
</p>
2023-06-06 15:28:24 -04:00
<p>
2023-08-08 16:19:17 -04:00
<a class="usa-link" href="{{ url_for('main.support') }}">Contact us</a> if you need any other details.
2021-08-27 11:44:19 +01:00
</p>
2023-08-25 11:38:07 -04:00
<h2 class="heading-medium" id="supplier-details">
2021-08-27 11:44:19 +01:00
Supplier details
</h2>
2023-06-06 15:28:24 -04:00
<p>
2021-08-27 11:44:19 +01:00
Cabinet Office
</p>
2023-06-06 15:28:24 -04:00
<p>
2021-08-27 11:44:19 +01:00
The White Chapel Building <br>
10 Whitechapel High Street <br>
London <br>
E1 8QS
</p>
2023-06-06 15:28:24 -04:00
<h3 class="font-body-lg" id="email-addresses">
2021-08-27 11:44:19 +01:00
Email addresses
</h3>
2023-08-25 15:31:44 -04:00
<ul class="usa-list usa-list--bullet">
{% for email in billing_details['notify_billing_email_addresses'] %}
2021-08-27 11:44:19 +01:00
<li>
{{ email }}
2021-08-27 11:44:19 +01:00
</li>
{% endfor %}
2021-08-27 11:44:19 +01:00
</ul>
2023-06-06 15:28:24 -04:00
<h3 class="font-body-lg" id="vat-number">
2021-08-27 11:44:19 +01:00
<abbr title="Value Added Tax">VAT</abbr> number
</h3>
2023-08-25 11:38:07 -04:00
<div>
2021-08-27 11:44:19 +01:00
{{ copy_to_clipboard(
'GB 88 88 010 80',
thing='<abbr title="Value Added Tax">VAT</abbr> number',
) }}
</div>
2023-08-25 11:38:07 -04:00
<h2 class="heading-medium" id="bank-details">
2021-08-27 11:44:19 +01:00
Bank details
</h2>
2023-06-06 15:28:24 -04:00
<p>
2021-08-27 11:44:19 +01:00
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>
2023-06-06 15:28:24 -04:00
<h3 class="font-body-lg" id="account-name">
2021-08-27 11:44:19 +01:00
Account name
</h3>
2023-06-06 15:28:24 -04:00
<p>
2021-08-27 11:44:19 +01:00
Cabinet Office
</p>
2023-06-06 15:28:24 -04:00
<h3 class="font-body-lg" id="account-number">
Account number
</h3>
2023-08-25 11:38:07 -04:00
<div>
2021-08-27 11:44:19 +01:00
{{ copy_to_clipboard(
billing_details['account_number'],
2021-08-27 11:44:19 +01:00
thing='account number',
) }}
</div>
2023-06-06 15:28:24 -04:00
<h3 class="font-body-lg" id="sort-code">
Sort code
</h3>
2023-08-25 11:38:07 -04:00
<div>
2021-08-27 11:44:19 +01:00
{{ copy_to_clipboard(
billing_details['sort_code'],
2021-08-27 11:44:19 +01:00
thing='sort code',
) }}
</div>
2023-06-06 15:28:24 -04:00
<h3 class="font-body-lg" id="iban">
<abbr title="International Bank Account Number">IBAN</abbr>
</h3>
2023-08-25 11:38:07 -04:00
<div>
2021-08-27 11:44:19 +01:00
{{ copy_to_clipboard(
billing_details['IBAN'],
2021-08-27 11:44:19 +01:00
thing='IBAN',
) }}
</div>
2023-06-06 15:28:24 -04:00
<h3 class="font-body-lg" id="swift-code">
Swift code
</h3>
2023-08-25 11:38:07 -04:00
<div>
2021-08-27 11:44:19 +01:00
{{ copy_to_clipboard(
billing_details['swift'],
2021-08-27 11:44:19 +01:00
thing='Swift code',
) }}
</div>
2023-08-25 11:38:07 -04:00
<h2 class="heading-medium" id="invoice-address">
2021-08-27 11:44:19 +01:00
Invoice address
</h2>
2023-06-06 15:28:24 -04:00
<p>
2021-08-27 11:44:19 +01:00
SSCL Accounts Receivable <br>
PO Box 221 <br>
Thornton-Cleveleys <br>
Blackpool <br>
Lancashire <br>
FY1 9JN
</p>
{% endblock %}