Skip to content
Snippets Groups Projects
Commit 0309994b authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[experiments] Only display outputs if the block was not cancelled

parent 174015e9
No related branches found
No related tags found
1 merge request!194Scheduler
Pipeline #
......@@ -236,7 +236,7 @@
</ul>
-->
{% endcomment %}
{% if core_block.nb_slots and core_block.nb_slots > 1 %}
{% if core_block.nb_slots and core_block.nb_slots > 1 %}
<li>Slots: {{ core_block.nb_slots }} (speed-up achieved: {{ block.speed_up_real|floatformat:-1 }}x)</li>
<li>Maximum speed-up achievable: {{ block.speed_up_maximal|floatformat:-1 }}x</li>
{% else %}
......@@ -255,7 +255,7 @@
</ul>
</li>
{% endif %}
{% if block.done %}
{% if block.done and block_status != 'Cancelled' %}
{% if error_report %}
<li>Captured Errors (on user code):
<pre class="console-output">{{ error_report }}</pre>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment