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

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

{% if approved_teams %}
    {% for team in approved_teams %}
  • {{ team.name }}: {{ team.expires_date }}
  • {% endfor %}
{% else %}

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

{% endif %}
{% endblock %}