{# Column-reference banner shared across recipe templates. Renders a collapsible
block listing every output column with its source and description, sourced from the `columns_schema` template variable that html_renderer populates from `recipe.output.columns`. Include this in the recipe template after the H2 / above the data table. No-op when the recipe doesn't define output.columns. #} {% if columns_schema %}
Column reference — {{ columns_schema | length }} columns {% for col in columns_schema %} {% endfor %}
Column Source Description
{{ col.name }} {{ col.source }} {{ col.description }}
{% endif %}