{% with authors=problem.authors.all() %}
{% if authors %}
{{ link_users(authors) }}
{% endif %}
{% endwith %}
{% if true %}
{% for type in problem.types_list %}
{{ type }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% cache 86400 'problem_html' problem.id MATH_ENGINE LANGUAGE_CODE %}
{{ problem.description|markdown("problem", MATH_ENGINE)|reference|str|safe }}
{% endcache %}