{% extends "base.html" %} {% load i18n teams_tags %} {% block page_name %}{% trans team.name %}{% endblock %} {% block sub_nav_links %}
  • {% trans "Back to Teams List" %}
  • {% if is_member %}{% else %}
  • {% trans "Join This Team!" %}
  • {% endif %} {% if is_admin %}
  • {% trans "Edit Details" %}
  • {% endif %} {% if is_admin and not team.active %}
  • {% trans "Merge team" %}
  • {% endif %} {% if is_member %}
  • {% trans "Add New Event" %}
  • {% endif %} {% if is_member %}
  • {% trans "Add New Meeting" %}
  • {% endif %} {% endblock %} {% block extrahead %}{{ block.super }} {% if team.flickr_id or team.picasa_id or team.pixie_id %} {% endif %} {% if team.flickr_id %} {% endif %} {% if team.picasa_id %} {% endif %} {% if team.pixie_id %} {% endif %} {% if team.microbloghashtag %} {% endif %} {% if team.flickr_id or team.picasa_id or team.pixie_id %} {% endif %} {% endblock %} {% block content %}
    {{ team.name }}

    {{ team.name }} {% trans "Contact this team" %}

    {% if team.countries.all %} {% for country in team.countries.all %} {% if not forloop.first %}, {% endif %}{{ country.name }} {% endfor %} {% if team.spr %}, {{ team.spr }}{% endif %}{% if team.city %}, {{ team.city }} {% endif %} {% else %} {% trans "None Specified" %} {% endif %}
    {% if team.languages.all %} {% for language in team.languages.all %} {% if not forloop.first %}, {% endif %}{{ language.name }} {% endfor %} {% else %} {% trans "None Specified" %} {% endif %}
    {% if team.web_url %} {% trans "Website" %} {% endif %} {% if team.web_url and team.wiki_url %} / {% endif %} {% if team.wiki_url %} {% trans "Wiki" %} {% endif %}
    {% if team.ml_url %} {% trans "Mailing List" %} {% endif %} / {% if team.forum_url %} {% trans "Forums" %} {% endif %} / {% if team.irc_chan %} {% trans "IRC" %} {% endif %}
    {% if team.approved %} {{ team.expires_date }} {% endif %}
    {% if team.provides_support %} {% trans "This LoCo provides support :)" %} {% else %} {% trans "This LoCo doesn't provide support :(" %} {% endif %}

    {% trans "Upcoming Events" %}

    {% if team.next_5_events_and_meetings %} {% for team_event in team.next_5_events_and_meetings %} {{ team_event.name }} {{ team_event.local_date_begin|date:"l, d N Y" }} {% trans "at " %}{{ team_event.local_date_begin|date:"H:i T" }}

    {{ team_event.description }}

    {% endfor %} {% else %}
    {% trans "There are currently no upcoming events or meetings :(" %}
    {% endif %}
    {% if articles %}

    {% trans "Planet Feed" %}

    {% for article in articles %} {% endfor %}
    {% endif %} {% if team.flickr_id or team.picasa_id or team.pixie_id %}
    {% with team.name as team_name %}

    {% blocktrans %}Photos from {{ team_name }}{% endblocktrans %}

    {% endwith %}
    {% endif %}
    {% endblock %}