Merge pull request #2267 from alphagov/pricing-increase

Advising about future letter pricing from 1 October
This commit is contained in:
Pete Herlihy
2018-08-30 12:10:08 +01:00
committed by GitHub
+9 -9
View File
@@ -93,21 +93,21 @@
<div class="bottom-gutter-3-2"> <div class="bottom-gutter-3-2">
{% call mapping_table( {% call mapping_table(
caption='Letter pricing', caption='Letter pricing',
field_headings=['', 'Crown bodies', 'Other public sector organisations'], field_headings=['', 'Current price', 'Price from 1 October 2018'],
field_headings_visible=True, field_headings_visible=True,
caption_visible=False caption_visible=False
) %} ) %}
{% for sheets, central, local in [ {% for sheets, current, future in [
('1 sheet', '30', '33'), ('1 sheet', '30', '30'),
('2 sheets', '33', '39'), ('2 sheets', '33', '35'),
('3 sheets', '36', '45'), ('3 sheets', '36', '40'),
('4 sheets', '39', '51'), ('4 sheets', '39', '45'),
('5 sheets', '42', '57'), ('5 sheets', '42', '50'),
] %} ] %}
{% call row() %} {% call row() %}
{% call row_heading() %} {{ sheets }} (double-sided) {% endcall %} {% call row_heading() %} {{ sheets }} (double-sided) {% endcall %}
{{ text_field(central + 'p + VAT') }} {{ text_field(current + 'p + VAT') }}
{{ text_field(local + 'p + VAT') }} {{ text_field(future + 'p + VAT') }}
{% endcall %} {% endcall %}
{% endfor %} {% endfor %}
{% endcall %} {% endcall %}