diff --git a/app/templates/views/pricing/index.html b/app/templates/views/pricing/index.html
index d68245624..d21073d73 100644
--- a/app/templates/views/pricing/index.html
+++ b/app/templates/views/pricing/index.html
@@ -1,3 +1,4 @@
+{% from "components/content-metadata.html" import content_metadata %}
{% from "components/table.html" import mapping_table, row, text_field, field, row_heading %}
{% from "components/live-search.html" import live_search %}
{% from "components/details/macro.njk" import govukDetails %}
@@ -11,6 +12,13 @@
{% block content_column_content %}
Pricing
+
+ {{ content_metadata(
+ data={
+ "Last updated": "1 March 2022"
+ }
+ ) }}
+
GOV.UK Notify is free to use unless you:
- exceed your free text message allowance
@@ -233,11 +241,11 @@
caption_visible=False
) %}
{% for sheets, second, first, international in [
- ('1 sheet', '39p', '69p', '89p'),
- ('2 sheets', '44p', '74p', '97p'),
- ('3 sheets', '49p', '79p', '£1.05'),
- ('4 sheets', '54p', '84p', '£1.13'),
- ('5 sheets', '59p', '89p', '£1.21'),
+ ('1 sheet', '41p', '63p', '96p'),
+ ('2 sheets', '46p', '68p', '£1.04'),
+ ('3 sheets', '51p', '73p', '£1.12'),
+ ('4 sheets', '56p', '78p', '£1.20'),
+ ('5 sheets', '61p', '83p', '£1.28'),
] %}
{% call row() %}
{% call row_heading() %} {{ sheets }} {% endcall %}
@@ -249,13 +257,4 @@
{% endcall %}
-
-
On 1 March 2022:
-
- - second class postage will go up by 2 pence, plus VAT
- - international postage will go up by 7 pence, plus VAT
- - first class postage will go down by 6 pence, plus VAT
-
-
-
{% endblock %}