{% trans "Ubuntu LoCo Event Venues" %}
{% if venue_list %}{% trans "Select a Venue below to see more information about it:" %}
{% for continent in continents %} {% if continent.related_venues %}{{continent.name}}
{% for country in continent.related_countries %} {% if country.related_venues %}{{country.name}}
-
{{colcycle.reset}}
{% for venue in country.related_venues %}
- {{ venue.name }}{% if venue.city %}, {{ venue.city }}{% endif %} {% endfor %}
{% endif %} {% endfor %} {% endif %} {% endfor %} {% if countries_without_continent_have_venues %}
{% trans "Countries without Continent" %}
{% for country in countries_without_continent %}
{% if country.related_venues %}
{{country.name}}
{{colcycle.reset}}
{% for venue in country.related_venues %}
- {{ venue.name }}{% if venue.city %}, {{ venue.city }}{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% if venues_without_country %}
{% trans "Venues without Country" %}
{{colcycle.reset}}
{% for venue in venues_without_country %}
- {{ venue.name }}{% if venue.city %}, {{ venue.city }}{% endif %}
{% endfor %}
{% endif %}
{% else %}
{% trans "There are currently no LoCo Venues :(" %}
{% endif %}