{{ problem.name }}
{% if problem.id in completed_problem_ids %}
{% elif problem.id in attempted_problems %}
{% else %}
{% endif %}
{% with authors=problem.authors.all() %}
{% if authors %}
{{ link_users(authors) }}
{% endif %}
{% endwith %}
{% if show_types %}
{% for type in problem.types_list %}
{{ type }}{% if not loop.last %}, {% endif %}
{% endfor %}, *{{problem.points | int}}
{% endif %}
{% cache 86400 'problem_html' problem.id MATH_ENGINE LANGUAGE_CODE %}
{{ problem.description|markdown("problem", MATH_ENGINE)|reference|str|safe }}
{% endcache %}