{# partials/_targets_options.html / elements for the target . Expects: targets — {local: [{name, tags}], builtin: [...]} #} — select a target — {% if targets.local %} {% for t in targets.local %} {{ t.name }}{% if t.tags %} ({% for tag in t.tags %}{{ tag.label }}{% if not loop.last %}, {% endif %}{% endfor %}){% endif %} {% endfor %} {% endif %} {% if targets.builtin %} {% for t in targets.builtin %} {{ t.name }}{% if t.tags %} ({% for tag in t.tags %}{{ tag.label }}{% if not loop.last %}, {% endif %}{% endfor %}){% endif %} {% endfor %} {% endif %}