{% if cups is defined and cups|length > 0 %}
{% for cupName, rounds in cups %}
    {% set cupIndex = loop.index %} {% for round in rounds %}
  • {{ round }}
  • {% endfor %}
{% endfor %}
{% endif %}