{# The report itself: extends the base layout and pulls in the table macro, so the three levels — page skeleton, this report, and the shared table partial — compose into the finished page. Every value comes from `data`, the dict EDJAS extracted. #} {% extends "base.html" %} {% import "_table.html" as t %} {% block title %}{{ data.title }}{% endblock %} {% block content %}

{{ data.title }}

{{ data.published }}

{{ data.next_due }}

{{ data.contact }}

Worksheets in this release

{{ t.render_table(data.contents, caption="Contents") }}

Revision triangles

Volume seasonally adjusted, Great Britain. Figures rounded to three decimal places by the extraction pipeline.

{{ t.render_table(data.revisions) }} {% endblock %} {% block footer %}

Source: {{ data.title }}, Office for National Statistics, licensed under the Open Government Licence v3.0. More at {{ data.source }}.

Report generated by EDJAS from an unmodified workbook via a TOML spec — the workbook was only ever read.

{% endblock %}