{% extends "team/base.html.twig" %}
{% block title %}Contest problems {{ current_team_contest.shortname | default('') }} - {{ parent() }}{% endblock %}
{% block content %}
{% include 'partials/problem_list.html.twig' with {
contest: current_team_contest,
show_contest_problemset: current_team_contest and current_team_contest.freezeData.started,
contest_problemset_path: 'team_contest_problemset',
problem_statement_path: 'team_problem_statement',
problem_attachment_path: 'team_problem_attachment',
problem_sample_zip_path: 'team_problem_sample_zip',
show_submit_button: true
} %}
{% endblock %}