{# Each group carries one of the six hues defined in admin.css; the pages it
links to pick that hue up again in their own header and table. #}
{% for group in groups %}
{{ group }}
{% for spec in registry.in_group(group) %}
{{ spec.label }}
{% endfor %}
{% endfor %}
{% if pages | selectattr("label") | first %}
Pages
{% for page in pages if page.label %}
{{ page.label }}
{% endfor %}