{% endif %}
{% endwith %}
{% endcache %}
{% if not contest_problem or not contest_problem.contest.hide_problem_tags %}
{% with types=problem.types_list %}
{% trans trimmed count=problem.types_list|length %}
Problem type
{% pluralize count %}
Problem types
{% endtrans %}
{{ problem.types_list|join(", ") }}
{% endwith %}
{% endif %}
{% if show_languages %}
{{ _('Allowed languages') }}
{% with usable=problem.usable_common_names, langs=problem.languages_list() %}
{% for lang in langs %}
{%- if lang in usable -%}
{{ lang }}
{%- else -%}
{{ lang }}
{%- endif -%}
{% if not loop.last %}, {% endif -%}
{% endfor %}
{% endwith %}
{% endif %}
{% if problem.is_editable_by(request.user) %}
{% if available_judges %}
{% if perms.judge.change_judge %}
{% for judge in available_judges %}
{{ judge.name }}
{%- if not loop.last %}, {% endif %}
{% endfor %}
{% else %}
{{ available_judges|join(", ") }}
{% endif %}
{% else %}
{{ _('none available') }}
{% endif %}
{% endif %}
{% endblock %}
{% block description %}
{% if can_vote and not vote %}
{% include 'problem/voting-form.html' %}
{% endif %}
{% if contest_problem and contest_problem.contest.use_clarifications and has_clarifications %}