{% extends "base.html" %} {% load i18n %} {% block title %}{% trans team.name %}{% endblock %} {% block sub_nav_links %} {% trans "Go back to Team list" %} {% if is_member %}{% else %} {% trans "Join this team!" %}{% endif %} {% if is_admin %}{% trans "Edit team details" %}{% endif %} {% if is_member %}{% trans "Add new Event" %}{% endif %} {% endblock %} {% block search %}{% endblock %} {% block extrahead %} {% endblock %} {% block content %}

{{ team.name }}

{% if team.approved_date %} {% endif %} {% if team.approved %} {% endif %}
{% if team.countries.all %} {% for country in team.countries.all %} {{ 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 %} {{ language.name }}  {% endfor %} {% else %} {% trans "None Specified" %} {% endif %}
{{ team.name }}
{{ team.owner }}
{{ team.approved_date }}
{{ team.expires_date }}
{% if team.provides_support %}Yes{% else %}No{% endif %}
{% for admin in team.admins.all %} {{ admin.lpid }}{% if not forloop.last %},{% endif %} {% endfor %}
{% if team.wiki_url %} {% trans {% endif %} {% if team.irc_chan %} {% trans {% endif %} {% if team.ml_url %} {% trans {% endif %} {% if team.forum_url %} {% trans {% endif %} {% if team.web_url %} {% trans {% endif %}
{% if team.teamevent_set.next_5_events %}
    {% for team_event in team.teamevent_set.next_5_events %} {% comment %}TRANSLATORS: If event has a venue, show: date "in" city{% endcomment %}
  • {{ team_event.name }} {% trans "on: " %}{{ team_event.date_begin|date}}
  • {% endfor %}
{% else %}{% trans "None Specified" %}{% endif %}
{% endblock %}