Skip to content

Do not add the submissions list to team scoreboards #3028

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion webapp/templates/partials/scoreboard_table.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@
{% endif %}
{% endif %}

{% set link = null %}
{% set extra = null %}
{% if jury %}
{% set restrict = {problemId: problem.probid} %}
Expand All @@ -317,7 +318,7 @@
{% set extra = 'data-submissions-url="' ~ path('public_submissions_data') ~ '"' %}
{% set extra = extra ~ ' data-team-id="' ~ score.team.externalid ~ '"' %}
{% set extra = extra ~ ' data-problem-id="' ~ problem.externalid ~ '"' %}
{% else %}
{% elseif public %}
{% set link = path('public_submissions', {teamId: score.team.externalid, problemId: problem.externalid}) %}
{% set extra = 'data-submissions-url="' ~ path('public_submissions_data_cell', {teamId: score.team.externalid, problemId: problem.externalid}) ~ '"' %}
{% set extra = extra ~ ' data-team-id="' ~ score.team.externalid ~ '"' %}
Expand Down
Loading