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

151 lines
4.1 KiB
HTML
Raw Normal View History

{% from "components/table.html" import mapping_table, row, text_field, field, row_heading %}
{% from "components/textbox.html" import textbox %}
2017-07-28 14:43:44 +01:00
{% extends "withoutnav_template.html" %}
{% block per_page_title %}
Pricing
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-large">Pricing</h1>
<h2 class="heading-medium">Emails</h2>
<p>
Sending email through GOV.UK&nbsp;Notify is completely free.
</p>
<h2 class="heading-medium">Text messages</h2>
2017-07-28 14:28:25 +01:00
<p>
Text message rate: {{ '{:.2f}'.format(sms_rate * 100) }} pence + VAT
</p>
<h3 class="heading-small">
Free allowance
</h3>
<p>
All services have a free allowance of text messages, per financial year:
</p>
<ul class="list list-bullet">
2017-07-28 14:28:25 +01:00
<li>250,000 text messages for central government services</li>
<li>25,000 text messages for local government services</li>
</ul>
2017-07-28 14:28:25 +01:00
<h3 class="heading-small">
Long messages
</h3>
<p>
2017-07-28 14:28:25 +01:00
Long messages count as 2 or 3 text messages depending on length:
</p>
2017-07-28 14:28:25 +01:00
<ul class="list list-bullet">
<li>Up to 160 characters = 1 text message</li>
<li>Up to 306 characters = 2 text messages</li>
<li>Up to 459 characters = 3 text messages</li>
</ul>
<h3 class="heading-small">
International numbers
</h3>
<p>
Messages to international mobile numbers are charged at 1, 2, or 3
times the cost of messages to UK mobile numbers.
</p>
<details>
<summary>International text message rates</summary>
<div class="live-search" data-module="live-search" data-targets="#international-pricing .table-row">
{{ textbox(
search_form.search,
width='1-1',
label='Search by country name or code'
) }}
</div>
<div id="international-pricing" class="bottom-gutter-3-2">
{% call mapping_table(
caption='Letter pricing',
field_headings=['Country code', 'Country', 'Cost multipler'],
field_headings_visible=True,
caption_visible=False
) %}
{% for cc, names, billable_units in international_sms_rates %}
{% call row() %}
{{ text_field('+' + cc) }}
{% call field() %}
{% for name in names %}
{{ name }}<br>
{% endfor %}
{% endcall %}
{{ text_field('{}&hairsp;&times;'.format(billable_units)|safe) }}
{% endcall %}
{% endfor %}
{% endcall %}
</div>
</details>
2017-07-28 14:58:47 +01:00
2017-07-28 14:43:44 +01:00
<h2 class="heading-medium">
Letters
</h2>
<p>
Letters are printed double sided in colour. Prices include
printing, paper, envelope, and postage. All letters are sent
second class post.
</p>
<p>
The price of letters increases with the number of sheets printed:
</p>
<div class="bottom-gutter-3-2">
{% call mapping_table(
caption='Letter pricing',
field_headings=['', 'Central government', 'Local government'],
field_headings_visible=True,
caption_visible=False
) %}
{% for sheets, central, local in [
('1 sheet', '30', '33'),
('2 sheets', '33', '39'),
('3 sheets', '36', '45')
] %}
{% call row() %}
{% call row_heading() %} {{ sheets }} (double sided) {% endcall %}
{{ text_field(central + 'p + VAT') }}
{{ text_field(local + 'p + VAT') }}
{% endcall %}
{% endfor %}
{% endcall %}
</div>
2017-07-28 14:28:25 +01:00
<h2 class="heading-medium">No monthly charge or setup fee</h2>
<p>
There are no other charges for using Notify. Theres no monthly charge
or setup fee.
</p>
<p>
The Government Digital Service is funding the development and running
of Notify. Were also covering the cost of the free emails and text messages.
</p>
2017-07-28 14:28:25 +01:00
<p>
We simply charge you the costs we pay to our delivery partners. We
dont mark these costs up in any way.
</p>
</div>
</div>
{% endblock %}