• {% block solves %}
  • {% endblock %}

{{ challenge.name }}

{{ challenge.value }}

{% if tags %}
{% block tags %} {% for tag in tags %} {% if tag != 'Flash' %} {{ tag }} {% else %} {{ challenge.endTime }} {% endif %} {% endfor %} {% endblock %}
{% endif %} {% block description %}{{ challenge.html }}{% endblock %} {% if challenge.connection_info %}
{% block connection_info %} {% set conn = challenge.connection_info %} {% if not conn %} {% elif conn.startswith("http") %} {{ conn | urlize(target="_blank") }} {% else %} {{ conn }} {% endif %} {% endblock %}
{% endif %} {% if hints %}
{% for hint in hints | sort(attribute="cost") %}
{% if hint.content %}
{% trans %}View Hint{% endtrans %}
{{ hint.html | safe }}
{% else %}
Débloquer l'indice pour {{ hint.cost }} point{{ hint.cost|pluralize }}
{% endif %}
{% endfor %}
{% endif %} {% if files %}
{% for file in files %}
{% set segments = file.split('/') %} {% set token = file.split('?') | last %} {% if token %} {% set filename = segments | last | replace("?" + token, "") %} {% else %} {% set filename = segments | last %} {% endif %} {{ filename }}
{% endfor %}
{% endif %} {% if max_attempts > 0 %}

{{ attempts }}/{{ max_attempts }} tentative{{ max_attempts|pluralize }}

{% endif %} {% if (not solved_by_me and attempts == 0) or ((max_attempts == 0 or max_attempts > attempts) and challenge.type == "manualRecursive") or ((max_attempts == 0 or max_attempts > attempts) and challenge.type == "standard" and not solved_by_me) or (challenge.type == "sport" and (challenge.max_points)) %}
{% block input %} {% if challenge.type == "standard" %} {% elif challenge.type == "sport" %}

x {{challenge.unit}}

Soumettre un ou plusieurs médias

{% else %}

Soumettre un ou plusieurs médias

Soumettre une réponse textuelle

{% endif %} {% endblock %}
{% block submit %} {% if challenge.type == "standard" %} {% elif challenge.type == "sport" %} {% else %} {% endif %} {% endblock %}
{% elif solved_by_me %}

Défi déjà complété!

{% elif attempts > 0 and challenge.type == "sport" %}

Vous avez déjà atteint la limite de points pour ce challenge. [/{{challenge.max_points}}]

{% elif attempts > 0 and challenge.type != "standard" %}

Défi soumis. Si vous êtes le propriétaire, vous pouvez le supprimer dans la section Équipe. Sinon, demandez à un admin ou à votre capitaine d'équipe !

{% endif %}
{% trans %}Équipe{% endtrans %} {% trans %}Nom{% endtrans %} {% trans %}Date{% endtrans %} {% trans %}Statut{% endtrans %}