{% extends "base.html" %} {% load i18n %} {% block title %}{{ team.name }}{% endblock %} {% block content %}

{% trans "Go back to Team list." %}

{% trans "Go back to team details." %}

{% if form.errors %}

{% trans "Please correct the error" %} {{ form.errors|pluralize }} below.

{% endif %}

{% trans "Update the information below:" %}

{{ form.as_table }} {% if team.approved %} {% endif %}
{% if team.approved %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}
{{ team.approved_date }}
{{ team.expires_date }}

{% endblock %}