8 lines
227 B
HTML
8 lines
227 B
HTML
{% if tab_slug == "error" %}
|
|
{% if run.error %}
|
|
<pre style="white-space: pre-wrap; margin: 0;">{{ run.error }}</pre>
|
|
{% else %}
|
|
<p class="has-text-grey">No error recorded for this run.</p>
|
|
{% endif %}
|
|
{% endif %}
|