{%- for other_col in known_keys %}
{%- if other_col not in ["idx", "branch", "revision", "owner", "project", "title"] %}
{{ other_col }}
{%- endif %}
{% endfor %}
{%- if data %}
{%- for item in data %}
{%- set info = "suite: %s/%s@%s "|format(item.idx, item.branch, item.revision) %}
{%- for key, value in item|dictsort %}
{%- if value is not none and key not in ["idx", "branch", "revision", "href", "owner", "project", "title"] %}
{%- if "-list" in key %}
{%- set value = value|join(" ") %}
{%- endif %}
{%- set info = info ~ "" ~ key ~ "" ~ ": " ~ value ~ " " %}
{%- endif %}
{%- if loop.last %}