{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "My Teams" %} | {% trans "Ubuntu LoCo Team Directory" %} {% endblock %}
{% block extrahead %}{{ block.super }}
{# #}
{% for team in teams %}
{% endfor %}
{% endblock %}
{% block sub_nav_links %}
{% trans "My Teams" %}{% trans "All Teams" %}
{% comment %}
{% trans "Join a Team" %}{% trans "Create a Team" %}
{% endcomment %}
{% endblock %}
{% block content %}
{% for team in teams %}
{% if team.teammeeting_set.next_3_meetings %}
{% for team_event in team.teammeeting_set.next_3_meetings %}
{% include 'meetings/team_meeting_li.inc.html' %}
{% endfor %}
{% else %}
{% trans "There are no schedules meetings for this team" %}
{% if team.teamevent_set.next_3_events %}
{% for team_event in team.teamevent_set.next_3_events %}
{% include 'events/team_event_li.inc.html' %}
{% endfor %}
{% else %}
{% trans "There are no schedules events for this team" %}
{% endif %}
{% if team.microbloghashtag %}
{% else %}
{% if team.flickr_id %} {# or team.picasa_id or team.pixie_id %}#}
{% endif %}
{% endif %}
{% endfor %}
{% endblock %}