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

{{ team.name }}

{% 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 %}
{% if team.website and (team.website.startswith('http://') or team.website.startswith('https://')) %} {% endif %}
{% if team.fields or team.website %}
{% endif %}

{# 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 %}

{% include "components/errors.html" %}

{% trans %}Membres{% endtrans %}

{% for member in team.members %} {% endfor %}
{% trans %}Nom d'utilisateur{% endtrans %} {% trans %}Score{% endtrans %}
{{ member.name }} {{ member.score }}
{% if solves or awards %} {% if awards %}

{% trans %}Récompenses{% endtrans %}

{% for award in awards %}


{{ award.name }}

{% if award.category %}

{{ award.category }}

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

{{ award.description }}

{% endif %}

{{ award.value }}

{% endfor %}

{% endif %}

{% trans %}Résolutions{% endtrans %}

{% for solve in solves %} {% endfor %}
{% trans %}Défi{% endtrans %} {% trans %}Catégorie{% endtrans %} {% trans %}Valeur{% endtrans %} {% trans %}Temps{% endtrans %}
{{ solve.challenge.name }} {{ solve.challenge.category }} {{ solve.value if solve.value is not none else solve.challenge.value }}

{% else %}

{% trans %}Aucune résolution{% endtrans %}

{% endif %}
{% endblock %} {% block scripts %} {{ Assets.js("assets/js/teams/public.js") }} {% endblock %}