{# Expects 'players' list, 'seed', and optional 'byes' and 'event16' boolean #}
{% if not players.0 and byes %}
Bye
{% elif not players.0 %}
{% endif %}
{% for player in players %}
{% if not forloop.first %}
{% endif %}
{% if player %}
{{ player.last_first_initial }}
{% else %}
{% endif %}
{% endfor %}
{% if seed %}
({{ seed }})
{% endif %}