File tree Expand file tree Collapse file tree 2 files changed +27
-9
lines changed Expand file tree Collapse file tree 2 files changed +27
-9
lines changed Original file line number Diff line number Diff line change 81
81
<th scope =" col" >score</th >
82
82
{% endif %}
83
83
{% if showExternalResult and not showExternalTestcases %}
84
- <th scope =" col" >external result</th >
84
+ <th scope =" col" >ext. result</th >
85
+ {% if is_scoring %}
86
+ <th scope =" col" >ext. score</th >
87
+ {% endif %}
85
88
{% endif %}
86
89
{% if not showExternalResult or not showExternalTestcases %}
87
90
<th scope =" col" class =" table-button-head-left" >verified</th >
168
171
{{ submission | printValidJurySubmissionResult }}
169
172
</a >
170
173
</td >
171
- <td class =" right" >
172
- {% if submission .score is not null %}
173
- {{ submission .score | number_format(2 , ' .' , ' ' ) }}
174
- {% else %}
175
- {{ ' -' }}
176
- {% endif %}
177
- </td >
174
+ {% if is_scoring %}
175
+ <td class =" right" >
176
+ {% if submission .score is not null %}
177
+ {{ submission .score | number_format(2 , ' .' , ' ' ) }}
178
+ {% else %}
179
+ {{ ' -' }}
180
+ {% endif %}
181
+ </td >
182
+ {% endif %}
178
183
{% if showExternalResult and not showExternalTestcases %}
179
184
{% if submission .externalJudgements .empty %}
180
185
{% set externalJudgement = null %}
192
197
{% endif %}
193
198
</a >
194
199
</td >
200
+ {% if is_scoring %}
201
+ <td class =" {{ tdExtraClass }}" >
202
+ {% if externalJudgement is not null and externalJudgement .score is not null %}
203
+ {{ externalJudgement .score | number_format(2 , ' .' , ' ' ) }}
204
+ {% else %}
205
+ {{ ' -' }}
206
+ {% endif %}
207
+ </td >
208
+ {% endif %}
195
209
{% endif %}
196
210
{% if not showExternalResult or not showExternalTestcases %}
197
211
{%- set claim = false %}
Original file line number Diff line number Diff line change 409
409
{% if submission .importError %}
410
410
External result: {{ externalJudgement .result | printValidJuryResult }}
411
411
{% else %}
412
- (external: {{ externalJudgement .result | printValidJuryResult }})
412
+ (external: {{ externalJudgement .result | printValidJuryResult }}
413
+ {% if submission .problem .scoringProblem %}
414
+ , score: {{ " %.2f" | format(externalJudgement .score ) }}
415
+ {% endif %}
416
+ )
413
417
{% endif %}
414
418
{%- endif %}
415
419
{%- if selectedJudging is not null and judgehosts is not empty -%}
You can’t perform that action at this time.
0 commit comments