{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Ubuntu LoCo Teams List" %} | {% trans "Ubuntu LoCo Team Directory" %} {% endblock %}
{% block extrahead %}{{ block.super }}
{{form.media}}
{% endblock %}
{% block sub_nav_links %}
{% endblock %}
{% block content %}
{% for continent in continents %}{% if continent.related_teams %}
{{colcycle.reset}}
{% for team in continent.related_teams %}
- {{ team.name }}
{% endfor %}
{% endif %}{% endfor %}
{% if countries_without_continent_have_teams %}
{% trans "Countries without continent" %}
{% for country in countries_without_continent %}{% if country.related_teams %}
{{country.name}}
{{colcycle.reset}}
{% for team in country.related_teams %}
- {{ team.name }}
{% endfor %}
{% endif %}{% endfor %}
{% endif %}
{% if teams_without_country %}
{% trans "Teams without country" %}
{{colcycle.reset}}
{% for team in teams_without_country %}
- {{ team.name }}
{% endfor %}
{% endif %}
{% endblock %}