{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Ubuntu LoCo Teams List" %}{% endblock %} {% block content %}

{% trans "Ubuntu LoCo Teams" %}

{% if teams %}

Upcoming Reapprovals

{% trans "Select a team below to see more information about it:" %}

{% load list_to_columns %}
{% list_to_columns teams as columns 2 %} {% for column in columns %}
{% endfor %}
{% else %}

{% trans "There are currently no teams in the Ubuntu LoCo Directory. :(" %}

{% endif %}
{% endblock %}