diff --git a/beat/web/experiments/templates/experiments/view.html b/beat/web/experiments/templates/experiments/view.html index 5ab2bc91fca360a7c8c740af804f5cac7a2876eb..48311ed76c009293af3c7d5276ac99da51db099c 100644 --- a/beat/web/experiments/templates/experiments/view.html +++ b/beat/web/experiments/templates/experiments/view.html @@ -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>