Merge pull request #3749 from alphagov/february-2021-postage-increases

Update letter prices
This commit is contained in:
Katie Smith
2021-02-01 08:22:06 +00:00
committed by GitHub
5 changed files with 12 additions and 18 deletions

View File

@@ -40,7 +40,7 @@
<p class="govuk-body">Letters to Europe are delivered 3 to 5 days after theyre dispatched. Letters sent anywhere else in the world take 5 to 7 days to arrive.</p> <p class="govuk-body">Letters to Europe are delivered 3 to 5 days after theyre dispatched. Letters sent anywhere else in the world take 5 to 7 days to arrive.</p>
<h2 class="heading heading-medium">Pricing</h2> <h2 class="heading heading-medium">Pricing</h2>
<p class="govuk-body">It costs between 35p and £1.16 (plus VAT) to send a letter. Prices include:</p> <p class="govuk-body">It costs between 39 pence and £1.21 (plus VAT) to send a letter. Prices include:</p>
<ul class="list list-bullet"> <ul class="list list-bullet">
<li>paper</li> <li>paper</li>
<li>double-sided colour printing</li> <li>double-sided colour printing</li>

View File

@@ -214,11 +214,11 @@
caption_visible=False caption_visible=False
) %} ) %}
{% for sheets, second, first, international in [ {% for sheets, second, first, international in [
('1 sheet', '35p', '61p', '84p'), ('1 sheet', '39p', '69p', '89p'),
('2 sheets', '40p', '66p', '92p'), ('2 sheets', '44p', '74p', '97p'),
('3 sheets', '45p', '71p', '£1'), ('3 sheets', '49p', '79p', '£1.05'),
('4 sheets', '50p', '76p', '£1.08'), ('4 sheets', '54p', '84p', '£1.13'),
('5 sheets', '55p', '81p', '£1.16'), ('5 sheets', '59p', '89p', '£1.21'),
] %} ] %}
{% call row() %} {% call row() %}
{% call row_heading() %} {{ sheets }} {% endcall %} {% call row_heading() %} {{ sheets }} {% endcall %}
@@ -229,15 +229,9 @@
{% endfor %} {% endfor %}
{% endcall %} {% endcall %}
</div> </div>
<div class="panel panel-border-wide">
<p class="govuk-body">From 1 February 2021:</p>
<ul class="list list-bullet">
<li>second class postage will increase by 4 pence, plus VAT</li>
<li>first class postage will increase by 8 pence, plus VAT</li>
<li>international postage will increase by 5 pence, plus VAT</li>
</ul>
<p class="govuk-body">This is because Royal Mail has increased its rates.</p>
<div class="panel panel-border-wide">
<p class="govuk-body">These prices were updated on 1 February 2021.</p>
</div> </div>
{% endblock %} {% endblock %}

View File

@@ -16,7 +16,7 @@
back_link=url_for('main.service_settings', service_id=current_service.id) back_link=url_for('main.service_settings', service_id=current_service.id)
) }} ) }}
<p class="govuk-body"> <p class="govuk-body">
It costs between 35p and £1.16 to send a letter using Notify. It costs between 39 pence and £1.21 to send a letter using Notify.
</p> </p>
<p class="govuk-body"> <p class="govuk-body">
See <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for(".pricing", _anchor="letters") }}">pricing</a> for the list See <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for(".pricing", _anchor="letters") }}">pricing</a> for the list

View File

@@ -156,7 +156,7 @@
</div> </div>
<div class="govuk-grid-column-one-half"> <div class="govuk-grid-column-one-half">
<h3 class="govuk-visually-hidden">Letters</h3> <h3 class="govuk-visually-hidden">Letters</h3>
<div class="product-page-big-number">35 pence</div> <div class="product-page-big-number">39 pence</div>
to print and post a one page letter to print and post a one page letter
</div> </div>
<div class="govuk-grid-column-one-half"> <div class="govuk-grid-column-one-half">

View File

@@ -3790,7 +3790,7 @@ def test_unknown_channel_404s(
), [ ), [
( (
'letter', 'letter',
'It costs between 35p and £1.16 to send a letter using Notify.', 'It costs between 39 pence and £1.21 to send a letter using Notify.',
'Send letters', 'Send letters',
['email', 'sms'], ['email', 'sms'],
'False', 'False',
@@ -3799,7 +3799,7 @@ def test_unknown_channel_404s(
), ),
( (
'letter', 'letter',
'It costs between 35p and £1.16 to send a letter using Notify.', 'It costs between 39 pence and £1.21 to send a letter using Notify.',
'Send letters', 'Send letters',
['email', 'sms', 'letter'], ['email', 'sms', 'letter'],
'True', 'True',