{% extends "public/base.html.twig" %}
{% block title %}Contest problems {{ current_public_contest.shortname | default('') }} - {{ parent() }}{% endblock %}
{% block content %}
{% include 'partials/problem_list.html.twig' with {
contest: current_public_contest,
show_contest_problemset: current_public_contest and current_public_contest.freezeData.started,
contest_problemset_path: 'public_contest_problemset',
problem_statement_path: 'public_problem_statement',
problem_attachment_path: 'public_problem_attachment',
problem_sample_zip_path: 'public_problem_sample_zip'
} %}
{% endblock %}