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

{% trans "Ubuntu LoCo Team Approvals List" %}

{% if next_teams %}

{% trans "Reapprovals in the next 6 months" %}

    {% for team in next_teams %}
  • {{ team.name }}: {{ team.expires_date }}
  • {% endfor %}
{% endif %} {% if next_teams and later_teams %}
{% endif %} {% if later_teams %}

{% trans "Reapprovals later on" %}

    {% for team in later_teams %}
  • {{ team.name }}: {{ team.expires_date }}
  • {% endfor %}
{% endif %} {% if not next_teams and not later_teams %}

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

{% endif %}
{% endblock %}