{% extends "base.html" %} {% load i18n %} {% block page_name %}{% trans "Approved Ubuntu LoCo Teams" %}{% endblock %} {% block extrahead %}{{ block.super }} {% endblock %} {% block content %}

{% trans "Approved Ubuntu LoCo Teams" %}


{% with '' as end_link %} {% with '' as approved_link %} {% with '' as faq_link %} {% with '' as reapprove_link %}

{% trans "Getting Your Team Approved" %}

{% trans "Ubuntu LoCo teams fall into two approximate categories:" %}

{% blocktrans %}For more information on getting approved, you can look at {{ approved_link }}getting your LoCo team approved{{ end_link }} and the {{ faq_link }}LoCo Team FAQs{{ end_link }} pages created by the LoCo Council.{% endblocktrans %}

{% trans "Getting Your Team Reapproved" %}

{% trans "Every two years each LoCo team must be reapproved. LoCo teams will be contacted by a member of the LoCo Council notifying the team that it is time for them to be reapproved. The LoCo team then will need to create an application, much like the initial approval application showing that they have been active in the community in the past two years." %}

{% blocktrans %}For more information on getting reapproved, the LoCo Council has created the {{ reapprove_link }}LoCo Team Reapproval{{ end_link }} page.{% endblocktrans %}

{% endwith %} {% endwith %} {% endwith %} {% endwith %}

{% trans "Approved Teams:" %}


{% if next_teams %}

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

    {% for team in next_teams %}
  • {{ team.name }}: {{ team.expires_date }}
  • {% endfor %}
{% 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 Team Portal. :(" %}

{% endif %}
{% endblock %}