Skip to content

Commit 1bd62b1

Browse files
committed
Display the links
1 parent b406e7d commit 1bd62b1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

webapp/templates/jury/check_judgings.html.twig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,15 @@
9999
{{ checkJudgings.verifyResults('earlier', 'Verified earlier', earlier, true) }}
100100
{{ checkJudgings.verifyResults('nomatch', 'Without magic string', nomatch, true) }}
101101

102+
{% if problems != [] %}
103+
<h2>Problem runtime analytics</h2>
104+
You probably want to <a href="{{ path('jury_config') }}">fully</a> judge all submissions with enough overshoot
105+
to see the maximum runtime for <code>Accepted</code> solutions and tune those against expected
106+
<code>Time Limit Exceeded</code> solutions.<br>
107+
{% for p in problems %}
108+
{% set link = path('analysis_problem', {'probid': p.probid, 'view': 'hidden'}) %}
109+
<a href="{{ link }}">{{ p | problemBadge }}</a>
110+
{% endfor %}
111+
{% endif %}
112+
102113
{% endblock %}

0 commit comments

Comments
 (0)