{% extends "base.html" %} {% load i18n %} {% block title %}{% trans team.name %}{% endblock %} {% block content %}
{% trans "Go back to Team list." %}
{% if user.is_authenticated %}{% trans "Edit team details." %}
{% endif %}{% trans "Location Information" %} | |
---|---|
{% trans "Country" %} | {% trans team.country %} |
{% trans "State/Province/Region" %} | {% trans team.spr %} |
{% trans "City" %} | {% trans team.city %} |
{% trans "Launchpad Team Contact Information" %} | |
{% trans "Owner" %} | {{ team.owner }} |
{% trans "Administrator" %} | {{ admin.lpid }} |
{% trans "Team Information" %} | |
{% trans "Wiki URL" %} | {{ team.wiki_url }} |
{% trans "IRC Channel" %} | {{ team.irc_chan }} |
{% trans "Mailing List URL" %} | {{ team.ml_url }} |
{% trans "Email Address" %} | {{ team.email }} |
{% trans "Forums URL" %} | {{ team.forum_url }} |
{% trans "Web Site URL" %} | {{ team.web_url }} |
{% trans "Provides Support" %} | {% if team.provides_support %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %} |
{% trans "Approved" %} | {% if team.approved %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %} |
{% trans "Date Approved" %} | {{ team.approved_date }} |
{% trans "Date Expires" %} | {{ team.expires_date }} |