{% extends "base.html" %} {% load i18n %} {% block content %} {% trans "any" as any %}

{% trans "Participation of team" %} {{ participation.team.name }} ({{ participation.team.trigram }})

{% trans "Team:" %}
{{ participation.team }}
{% trans "Tournament:" %}
{{ participation.tournament }}
{% trans "Solutions:" %}
{% for solution in participation.solutions.all %} {% blocktrans trimmed with problem=solution.problem %}problem {{ problem }}{% endblocktrans %}{% if not forloop.last %}, {% endif %} {% empty %} {% trans "No solution was uploaded yet." %} {% endfor %}
{% endblock %}