{% extends "base.html" %} {% load i18n teams_tags %} {% block page_name %}{% blocktrans with team_object.name as teamname %}{{teamname}} Meetings History{% endblocktrans %}{% 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 }} {% 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 %}, {% trans team.spr %}{% endif %}{% if team.city %}, {% trans 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.provides_support %} {% trans "This LoCo provides support :)" %} {% else %} {% trans "This LoCo doesn't provide support :(" %} {% 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 %}

    {% trans "Past Meetings" %}

    {% if team_meetings %} {% regroup team_meetings by date_begin|date:"Y" as meetings %} {% for year in meetings %}
    {% trans "Browse by year" %} {% for y in meetings %} {% if y == year %} {{ y.grouper }} {% else %} {{ y.grouper }} {% endif %} {% endfor %}

    {{ year.grouper }} {% with meetings_count=year.list|length %} ({% blocktrans with meetings_count as meetings_count %}{{ meetings_count }} meetings{% endblocktrans %}) {% endwith %}

    {% for event in year.list %} {{ event.name }} {{ event.local_date_begin|date:"l, d N Y" }} {% trans "at " %}{{ event.local_date_begin|date:"H:i T" }}

    {{ event.description|truncatewords:50 }}

    {% endfor %} {% endfor %} {% else %}
    {% trans "This team has no meetings yet :(" %}
    {% endif %}
    {% endblock %}