|
{% 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 }} |
{% if team.approved_date %}
|
{{ team.approved_date }} |
{% endif %}
{% if team.approved %}
|
{{ team.expires_date }} |
{% endif %}
|
{% 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 %}
{% endif %}
{% if team.irc_chan %}
{% endif %}
{% if team.ml_url %}
{% endif %}
{% if team.forum_url %}
{% endif %}
{% if team.web_url %}
{% 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 %}
|