{% extends "admin/base.html" %} {% block stylesheets %} {% endblock %} {% block content %}

{{ team.name }}

{% if team.verified %} verified {% endif %} {% if team.hidden %} hidden {% endif %} {% if team.banned %} banned {% endif %}
{% if team.oauth_id %}

Official

{% endif %} {% if team.affiliation %}

{{ team.affiliation }}

{% endif %} {% if team.country %}

{{ lookup_country_code(team.country) }}

{% endif %}

{{ members | length }} members

{% if place %} {{ place }} place {% endif %}

{% if score %} {{ score }} points {% endif %}

{% if solves %}
{% else %}

No solves yet

{% endif %}

Team Members

{% for member in members %} {% endfor %}
User Name E-Mail
{% if team.captain_id == member.id %} Captain {% endif %} {{ member.name }} {{ member.email }}

IP Addresses

{% for addr in addrs %} {% endfor %}
User IP Address Last Seen
{{ addr.user.name }} {{ addr.ip }}
{% endblock %} {% block scripts %} {% endblock %} {% block entrypoint %} {% endblock %}