{% extends "jury/base.html.twig" %}
{% block title %}Contest problems {{ current_contest.shortname | default('') }} - {{ parent() }}{% endblock %}
{% block content %}
{% include 'partials/problem_list.html.twig' with {
contest: current_contest,
show_contest_problemset: true,
contest_problemset_path: 'jury_contest_problemset',
contest_problemset_add_cid: true,
problem_statement_path: 'jury_problem_statement',
problem_attachment_path: 'jury_attachment_fetch',
problem_sample_zip_path: 'jury_problem_sample_zip',
show_jury_warning: true
} %}
{% endblock %}