{% extends "problem/list-base.html" %} {% block left_sidebar %} {% include "problem/left-sidebar.html" %} {% endblock %} {% block middle_content %}
{{_('FOR YOU')}} {{_('NEW')}} {% if request.user.has_perm('judge.suggest_problem_changes') %} {{_('VOLUNTEER')}} {% endif %}
{% for problem in problems %}

{{ 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 %} {% if feed_type=='volunteer' and request.user.has_perm('judge.suggest_problem_changes') %}

{{_('Volunteer form')}}


{% endif %}
{% endfor %} {% if page_obj.num_pages > 1 %}
{% include "list-pages.html" %}
{% endif %} {% endblock %}