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