{# 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 }}
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 %}