{% trans "Ubuntu LoCo Event Venues" %}
{% if continent_list or venues_with_country or venues_without_country %}{% trans "Select a Venue below to see more information about it:" %}
{% if continent_list %} {% for continent in continent_list %}{{ continent.name }}
-
{% regroup continent.venue_list by country as country_list %}
{% for country in country_list %}
{{ country.grouper }}
{% for venue in country.list %} {% endfor %}
{% endfor %}
{% trans "Countries without Continent" %}
-
{% regroup venues_with_country by country as country_list %}
{% for country in country_list %}
{{ country.grouper }}
{% for venue in country.list %} {% endfor %}
{% endfor %}
{% trans "Venues without Country" %}
-
{% for venue in venues_without_country %}
- {% endfor %}
{% trans "There are currently no LoCo Venues :(" %}
{% endif %}