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

{{ team.name }}

{% if team.oauth_id %}

Official

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

{{ team.affiliation }}

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

{{ lookup_country_code(team.country) }}

{% endif %} {% for field in team.fields %}

{{ field.name }}: {{ field.value }}

{% endfor %}

{# This intentionally hides the team's place when scores are hidden because this can be their internal profile and we don't want to leak their place in the CTF. #} {# Public page hiding is done at the route level #} {% if scores_visible() %} {% if place %} {{ place }} place {% endif %} {% endif %}

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

{% if team.website and (team.website.startswith('http://') or team.website.startswith('https://')) %} {% endif %}
{% include "components/errors.html" %}

Members

{% for member in team.members %} {% endfor %}
User Name Score
{{ member.name }} {{ member.score }}
{% if solves or awards %}

{% if awards %}

Awards

{% for award in awards %}


{{ award.name }}

{% if award.category %}

{{ award.category }}

{% endif %} {% if award.description %}

{{ award.description }}

{% endif %}

{{ award.value }}

{% endfor %}

{% endif %}

Solves

{% for solve in solves %} {% endfor %}
Challenge Category Value Time
{{ solve.challenge.name }} {{ solve.challenge.category }} {{ solve.challenge.value }}
{% else %}

No solves yet

{% endif %}
{% endblock %} {% block scripts %} {% endblock %} {% block entrypoint %} {% if solves or awards %} {% endif %} {% endblock %}