{# partials/_judges_options.html elements for the judge . Expects: judges — {local: [{name, tags}], builtin: [...]} #} — none (record response only) — {% if judges.local %} {% for j in judges.local %} {{ j.name }}{% if j.tags %} ({% for tag in j.tags %}{{ tag.label }}{% if not loop.last %}, {% endif %}{% endfor %}){% endif %} {% endfor %} {% endif %} {% if judges.builtin %} {% for j in judges.builtin %} {{ j.name }}{% if j.tags %} ({% for tag in j.tags %}{{ tag.label }}{% if not loop.last %}, {% endif %}{% endfor %}){% endif %} {% endfor %} {% endif %}