{% for n in names %}
{% set tags = (tags_by_name.get(n, []) if tags_by_name else []) %}
{% set tline = (type_by_name.get(n, '') if type_by_name else '') %}
{% set cols = (colors_by_name.get(n, []) if colors_by_name else []) %}
{{ n }}
{% if cols and cols|length %}
{% for c in cols %}
{% endfor %}
Colors: {{ cols|join(', ') }}
{% endif %}