{% extends "base.html" %} {% load i18n %} {% block page_name %}{% trans "Ubuntu LoCo Teams List" %}{% endblock %} {% block extrahead %}{{ block.super }} {{form.media}} {% endblock %} {% block sub_nav_links %} {% endblock %} {% block content %}
{% for continent in continents %}{% if continent.related_teams %}

{{continent.name}}


{% endif %}{% endfor %} {% if countries_without_continent_have_teams %}

{% trans "Countries without continent" %}

{% for country in countries_without_continent %}{% if country.country_without_continent_related_teams %}

{{country.name}}


{% endif %}{% endfor %}
{% endif %} {% if teams_without_country %}

{% trans "Teams without country" %}


{% endif %} {% endblock %}