From 18985821a91dde6783d368621bd6474c051b9c50 Mon Sep 17 00:00:00 2001 From: Pete Herlihy Date: Thu, 30 Aug 2018 11:53:52 +0100 Subject: [PATCH] Advising about future letter pricing from 1 October This is just the pricing page, we'll sort the pricing table etc separately... W're removing non-crown pricing as we won't be charged differently any more. But we will retain the concept of non-crown as we may change differently ourselves in the future. --- app/templates/views/pricing.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/templates/views/pricing.html b/app/templates/views/pricing.html index 7171b15fb..acb432ef3 100644 --- a/app/templates/views/pricing.html +++ b/app/templates/views/pricing.html @@ -93,21 +93,21 @@
{% call mapping_table( caption='Letter pricing', - field_headings=['', 'Crown bodies', 'Other public sector organisations'], + field_headings=['', 'Current price', 'Price from 1 October 2018'], field_headings_visible=True, caption_visible=False ) %} - {% for sheets, central, local in [ - ('1 sheet', '30', '33'), - ('2 sheets', '33', '39'), - ('3 sheets', '36', '45'), - ('4 sheets', '39', '51'), - ('5 sheets', '42', '57'), + {% for sheets, current, future in [ + ('1 sheet', '30', '30'), + ('2 sheets', '33', '35'), + ('3 sheets', '36', '40'), + ('4 sheets', '39', '45'), + ('5 sheets', '42', '50'), ] %} {% call row() %} {% call row_heading() %} {{ sheets }} (double-sided) {% endcall %} - {{ text_field(central + 'p + VAT') }} - {{ text_field(local + 'p + VAT') }} + {{ text_field(current + 'p + VAT') }} + {{ text_field(future + 'p + VAT') }} {% endcall %} {% endfor %} {% endcall %}