{% extends "base.html" %} {% load i18n %} {% block page_name %}{% blocktrans with team.name as teamname %}Update {{teamname}}{% endblocktrans %}{% endblock %} {% block extrahead %}{{block.super}} {{ form.media }} {% endblock %} {% block extrafooter %} {% endblock %} {% block sub_nav_links %}
  • {% trans "Back to Teams List" %}
  • {% trans "Back to Team Details" %}
  • {% endblock %} {% block content %}
    {% if form.errors %}

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

    {% endif %}
    {% csrf_token %}

    {% trans "Update the information below" %}

    {{ form.as_template }}

    {% trans "Static information" %}

    {% if team.approved %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}
    {% if team.approved %}
    {{ team.approved_date }}
    {{ team.expires_date }}
    {% endif %}
    {% if is_popup %}{% endif %}
    {% endblock %}