{% load i18n %} {% if global_event_object.teamevent_set.all %} {% for continent in continents %}

{{ continent.name }}

{% for country in countries %}{% for cont in country.continents.all %}{% ifequal cont continent %}

{{ country.name }}

{% endifequal %}{% endfor %}{% endfor %} {% endfor %} {% if countries_without_continents %}

{% trans "Events in countries without continents" %}

{% for country in countries_without_continents %}

{{ country.name }}

{% endfor %} {% endif %} {% if events_without_venue %}

{% trans "Events without venue" %}

{% endif %}
{% endif %}