diff --git a/tmt/steps/report/html/template.html.j2 b/tmt/steps/report/html/template.html.j2 index 8f5754b150..e8a36f7ade 100644 --- a/tmt/steps/report/html/template.html.j2 +++ b/tmt/steps/report/html/template.html.j2 @@ -46,6 +46,7 @@ } #results table.check, + #results table.phase-check, #results table.phase { width: 100%; background: #dadada; @@ -96,17 +97,20 @@ } #results tr.check, + /* #results tr.phase-check, // Do not hide phase checks by default */ #results tr.phase { font-size: 90%; display: none; } #results tr.check td.result, + #results tr.phase-check td.result, #results tr.phase td.result { width: 5ex; } #results tr.check td.name, + #results tr.phase-check td.name, #results tr.phase td.name { color: #888; padding-left: 5ex; @@ -331,6 +335,35 @@ Context: {% endfor %} + {% if phase.check %} +
Result | +Name | +Logs | +
---|---|---|
{{ check.result.value | e }} | +{{ check.name | e }} ({{ check.event.value }}) | ++ {% for log in check.log %} + {{ log | basename }} + {% else %} + - + {% endfor %} + | +